UNPKG

@ptkdev/node-module-boilerplate

Version:

Create your npm library with this user friendly boilerplate. Use this respository as template for your new node library/module

27 lines 860 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.en = exports.it = void 0; /** * Translations * ===================== * Switch translations * * @contributors: Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev) * * @license: MIT License * */ const en_json_1 = __importDefault(require("../translations/en.json")); exports.en = en_json_1.default; const it_json_1 = __importDefault(require("../translations/it.json")); exports.it = it_json_1.default; // eslint-disable-next-line @typescript-eslint/no-explicit-any const translations = { en: en_json_1.default, it: it_json_1.default, }; exports.default = translations; //# sourceMappingURL=translations.js.map