2023-01-18 00:47:49 +05:30
|
|
|
{
|
|
|
|
// extend your base config to share compilerOptions, etc
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
// ensure that nobody can accidentally use this config for a build
|
2024-06-12 22:19:14 +05:30
|
|
|
"noEmit": true,
|
|
|
|
"allowJs": true
|
2023-01-18 00:47:49 +05:30
|
|
|
},
|
2024-06-29 16:20:46 +05:30
|
|
|
"include": [
|
|
|
|
"./.build/*.ts",
|
|
|
|
"./.esbuild/*.ts",
|
|
|
|
"./.vite/*.ts",
|
|
|
|
"./cypress.config.ts",
|
|
|
|
"./tests",
|
|
|
|
"./scripts",
|
|
|
|
"./cypress",
|
|
|
|
"./__mocks__",
|
|
|
|
"./demos/dev",
|
|
|
|
"./vite.config.ts",
|
|
|
|
"./vitest.workspace.js",
|
|
|
|
"eslint.config.js"
|
|
|
|
]
|
2023-01-18 00:47:49 +05:30
|
|
|
}
|