@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
16 lines • 980 B
TypeScript
//#region src/defaultValues/system.d.ts
declare const MAIN_DIR = ".intlayer/main";
declare const DICTIONARIES_DIR = ".intlayer/dictionary";
declare const MASKS_DIR = ".intlayer/mask";
declare const REMOTE_DICTIONARIES_DIR = ".intlayer/remote_dictionary";
declare const UNMERGED_DICTIONARIES_DIR = ".intlayer/unmerged_dictionary";
declare const DYNAMIC_DICTIONARIES_DIR = ".intlayer/dynamic_dictionary";
declare const FETCH_DICTIONARIES_DIR = ".intlayer/fetch_dictionary";
declare const TYPES_DIR = ".intlayer/types";
declare const MODULE_AUGMENTATION_DIR = ".intlayer/types";
declare const CONFIG_DIR = ".intlayer/config";
declare const CACHE_DIR = ".intlayer/cache";
declare const TEMP_DIR = ".intlayer/tmp";
//#endregion
export { CACHE_DIR, CONFIG_DIR, DICTIONARIES_DIR, DYNAMIC_DICTIONARIES_DIR, FETCH_DICTIONARIES_DIR, MAIN_DIR, MASKS_DIR, MODULE_AUGMENTATION_DIR, REMOTE_DICTIONARIES_DIR, TEMP_DIR, TYPES_DIR, UNMERGED_DICTIONARIES_DIR };
//# sourceMappingURL=system.d.ts.map