-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathtsconfig.json
44 lines (44 loc) · 920 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
39
40
41
42
43
44
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"module": "es2015",
"target": "es2015",
"lib": [
"dom",
"es2015"
],
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"strictPropertyInitialization": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"strictNullChecks": true,
"allowUnreachableCode": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"importHelpers": true,
"inlineSourceMap": true,
"inlineSources": true,
"downlevelIteration": true,
"pretty": true,
"types": [
"jest",
"zone.js"
],
"paths": {
"@angular-skyhook/*": [
"packages/*/index.ts"
]
}
},
"exclude": [
"tools",
"**/node_modules",
"**/dist",
"node_modules"
]
}