-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig-test.json
44 lines (44 loc) · 1.04 KB
/
tsconfig-test.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
39
40
41
42
43
44
/**
* Root tsconfig file for use in all tests.
*/
{
"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": "test",
"declaration": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "CommonJS",
"target": "es2020",
"strict": true,
"moduleResolution": "node",
"strictNullChecks": true,
"strictPropertyInitialization": false,
"outDir": "test/dist",
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"rootDir": "test",
"lib": [
"es2020",
"dom"
],
"inlineSourceMap": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"include": [
"test"
],
"exclude": [
"packages",
"dist",
"lib",
"node_modules",
"test/dist"
]
}