@darkobits/ts
Version:
Vite-based toolchain for Node projects.
16 lines (15 loc) • 481 B
TypeScript
/**
* List of patterns that will match test files.
*
* For example: foo.spec.ts, bar.spec.tsx.
*/
export declare const TEST_FILE_PATTERNS: readonly ["spec", "test"];
/**
* List of common file extensions we want tools to work with.
*/
export declare const BARE_EXTENSIONS: readonly ["ts", "tsx", "js", "jsx", "mjs", "cjs", "mts", "cts"];
/**
* List of common file extensions we want tools to work with, with leading
* periods.
*/
export declare const EXTENSIONS: string[];