/** * Glob patterns for common file types */ export declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)"; export declare const GLOB_SRC = "**/*.?([cm])[jt]s?(x)"; export declare const GLOB_JS = "**/*.?([cm])js"; export declare const GLOB_JSX = "**/*.?([cm])jsx"; export declare const GLOB_TS = "**/*.?([cm])ts"; export declare const GLOB_TSX = "**/*.?([cm])tsx"; export declare const GLOB_VUE = "**/*.vue"; export declare const GLOB_REACT = "**/*.{jsx,tsx,js,ts}"; export declare const GLOB_SVELTE = "**/*.svelte"; export declare const GLOB_JSON = "**/*.json"; export declare const GLOB_JSON5 = "**/*.json5"; export declare const GLOB_JSONC = "**/*.jsonc"; export declare const GLOB_YAML = "**/*.{yml,yaml}"; export declare const GLOB_MD = "**/*.md"; export declare const GLOB_MD_IN_MD = "**/*.md/*.md"; export declare const GLOB_MD_CODE = "**/*.md/**/*.?([cm])[jt]s?(x)"; export declare const GLOB_HTML = "**/*.html"; export declare const GLOB_TESTS = "**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"; export declare const GLOB_ALL = "**/*"; /** * Glob patterns for specific file types */ export declare const GLOB_ASTRO = "**/*.astro"; export declare const GLOB_ASTRO_TS = "**/*.astro/*.ts"; export declare const GLOB_CONFIG_FILES = "**/*.config.{js,ts,mjs,mts,cjs,cts}"; export declare const GLOB_COMMAND_FILES: string[]; /** * Glob patterns for files to ignore by default */ export declare const GLOB_EXCLUDES: string[]; /** * Packages that indicate Vue is being used */ export declare const VUE_PACKAGES: string[]; /** * Packages that indicate Next.js is being used */ export declare const NEXTJS_PACKAGES: string[]; /** * Packages that indicate Nuxt is being used */ export declare const NUXT_PACKAGES: string[]; /** * Packages that indicate Astro is being used */ export declare const ASTRO_PACKAGES: string[]; /** * Packages that indicate Angular is being used */ export declare const ANGULAR_PACKAGES: string[]; /** * Packages that indicate UnoCSS is being used */ export declare const UNOCSS_PACKAGES: string[]; /** * Packages that indicate React Compiler is being used */ export declare const REACT_COMPILER_PACKAGES: string[]; /** * Packages that indicate Remix is being used */ export declare const REMIX_PACKAGES: string[]; /** * Packages that indicate React Router is being used */ export declare const REACT_ROUTER_PACKAGES: string[]; /** * Packages that support React Refresh allowConstantExport */ export declare const REACT_REFRESH_ALLOW_CONSTANT_EXPORT_PACKAGES: string[]; /** * Editor environment indicators */ export declare const EDITOR_ENV_KEYS: string[]; //# sourceMappingURL=constants.d.ts.map