507 B24 lines
Blame
1{
2 // extend your base config to share compilerOptions, etc
3 "extends": "./tsconfig.json",
4 "compilerOptions": {
5 // ensure that nobody can accidentally use this config for a build
6 "noEmit": true,
7 "allowJs": true
8 },
9 "include": [
10 "./.build/*.ts",
11 "./.esbuild/*.ts",
12 "./.vite/*.ts",
13 "./cypress.config.ts",
14 "./tests",
15 "./scripts",
16 "./cypress",
17 "./__mocks__",
18 "./demos/dev",
19 "./vite.config.ts",
20 "./vitest.workspace.js",
21 "eslint.config.js"
22 ]
23}
24