-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 818 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"compilerOptions": {
"allowJs": false,
"declaration": true,
"declarationDir": ".cache/types",
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"outDir": ".cache/ts-out",
"skipLibCheck": true,
"strict": true,
"target": "ES2020",
"tsBuildInfoFile": ".cache/ts/tsconfig.tsbuildinfo",
"useDefineForClassFields": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "tests/**/*.ts"],
"exclude": ["dist", ".cache", "node_modules"]
}