@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
30 lines (28 loc) • 1.26 kB
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
//#region src/defaultValues/system.ts
const MAIN_DIR = ".intlayer/main";
const DICTIONARIES_DIR = ".intlayer/dictionary";
const MASKS_DIR = ".intlayer/mask";
const REMOTE_DICTIONARIES_DIR = ".intlayer/remote_dictionary";
const UNMERGED_DICTIONARIES_DIR = ".intlayer/unmerged_dictionary";
const DYNAMIC_DICTIONARIES_DIR = ".intlayer/dynamic_dictionary";
const FETCH_DICTIONARIES_DIR = ".intlayer/fetch_dictionary";
const TYPES_DIR = ".intlayer/types";
const MODULE_AUGMENTATION_DIR = ".intlayer/types";
const CONFIG_DIR = ".intlayer/config";
const CACHE_DIR = ".intlayer/cache";
const TEMP_DIR = ".intlayer/tmp";
//#endregion
exports.CACHE_DIR = CACHE_DIR;
exports.CONFIG_DIR = CONFIG_DIR;
exports.DICTIONARIES_DIR = DICTIONARIES_DIR;
exports.DYNAMIC_DICTIONARIES_DIR = DYNAMIC_DICTIONARIES_DIR;
exports.FETCH_DICTIONARIES_DIR = FETCH_DICTIONARIES_DIR;
exports.MAIN_DIR = MAIN_DIR;
exports.MASKS_DIR = MASKS_DIR;
exports.MODULE_AUGMENTATION_DIR = MODULE_AUGMENTATION_DIR;
exports.REMOTE_DICTIONARIES_DIR = REMOTE_DICTIONARIES_DIR;
exports.TEMP_DIR = TEMP_DIR;
exports.TYPES_DIR = TYPES_DIR;
exports.UNMERGED_DICTIONARIES_DIR = UNMERGED_DICTIONARIES_DIR;
//# sourceMappingURL=system.cjs.map