UNPKG

@intlayer/config

Version:

Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.

47 lines (45 loc) 1.12 kB
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); //#region src/defaultValues/content.ts const FILE_EXTENSIONS = [ ".content.ts", ".content.js", ".content.cjs", ".content.mjs", ".content.json", ".content.json5", ".content.jsonc", ".content.tsx", ".content.jsx", ".content.md", ".content.mdx", ".content.yaml", ".content.yml" ]; const EXCLUDED_PATHS = [ "**/node_modules/**", "**/dist/**", "**/build/**", "**/.intlayer/**", "**/.next/**", "**/.nuxt/**", "**/.expo/**", "**/.vercel/**", "**/.turbo/**", "**/.tanstack/**", "**/.output/**", "**/.svelte-kit/**" ]; const CONTENT_DIR = ["."]; const CODE_DIR = ["."]; const I18NEXT_DICTIONARIES_DIR = "i18next_resources"; const REACT_INTL_MESSAGES_DIR = "intl_messages"; const WATCH = true; //#endregion exports.CODE_DIR = CODE_DIR; exports.CONTENT_DIR = CONTENT_DIR; exports.EXCLUDED_PATHS = EXCLUDED_PATHS; exports.FILE_EXTENSIONS = FILE_EXTENSIONS; exports.I18NEXT_DICTIONARIES_DIR = I18NEXT_DICTIONARIES_DIR; exports.REACT_INTL_MESSAGES_DIR = REACT_INTL_MESSAGES_DIR; exports.WATCH = WATCH; //# sourceMappingURL=content.cjs.map