58417412f1
* build: extend cypress tsconfig from build tsconfig * build: exclude node_modules from watch to improve typechecking perf * fix: even tighter tsconfigs * fix: even tighter * fix: tailor cypress tsconfig to testing * fix: split them up again * fix: pr comments
18 lines
461 B
JSON
18 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"target": "ES5",
|
|
"tsBuildInfoFile": "../node_modules/.cache/tsbuildinfo/cypress", // avoid clobbering the build tsbuildinfo
|
|
"types": ["cypress", "node"]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["**/*.ts"],
|
|
"watchOptions": {
|
|
"excludeDirectories": ["node_modules"]
|
|
}
|
|
}
|