UNPKG

@ptkdev/node-cli-boilerplate

Version:

Create node cli with this user friendly boilerplate. Use this respository as template for your new npm command line interface project

20 lines 514 B
/** * Translations * ===================== * Switch translations * * @contributors: Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev) * * @license: MIT License * */ import en from "../translations/en.json" assert { type: "json" }; import it from "../translations/it.json" assert { type: "json" }; // eslint-disable-next-line @typescript-eslint/no-explicit-any const translations = { en, it, }; export { it, en }; export default translations; //# sourceMappingURL=translations.js.map