-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 965 Bytes
/
tsconfig.json
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
28
29
30
31
32
33
34
35
36
37
38
{
"compilerOptions": {
// Setting the "baseUrl" to a different directory than "packages/" because otherwise
// packages like the native "http" module are resolved to the Angular "http" package.
"baseUrl": ".",
"declaration": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "es2020",
"target": "es2020",
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"outDir": "dist",
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"rootDir": ".",
"inlineSourceMap": true,
"lib": [
"es2020",
"dom"
],
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"exclude": [
"dist",
"lib",
"types",
"test"
]
}