forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
69 lines (69 loc) · 2.72 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedParameters": false, // The linter is used for these.
"noUnusedLocals": false, // The linter is used for these.
"outDir": "./dist",
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"inlineSourceMap": true,
"sourceRoot": ".",
// Inline sources are necessary for our tests to show the proper sources, since we are using
// Istanbul (not Constantinople) as well, and applying both source maps to get the original
// source in devtools.
"inlineSources": true,
"strictNullChecks": true,
"target": "es2016",
"lib": [
"es2017"
],
"baseUrl": "",
"typeRoots": [
"./node_modules/@types"
],
"types": [
"jasmine",
"node"
],
"paths": {
"@_/benchmark": [ "./packages/_/benchmark/src/index" ],
"@angular-devkit/core": [ "./packages/angular_devkit/core/src/index" ],
"@angular-devkit/core/node": [ "./packages/angular_devkit/core/node/index" ],
"@angular-devkit/core/node/testing": [ "./packages/angular_devkit/core/node/testing/index" ],
"@angular-devkit/schematics": [ "./packages/angular_devkit/schematics/src/index" ],
"@angular-devkit/schematics/tasks": [ "./packages/angular_devkit/schematics/tasks/index" ],
"@angular-devkit/schematics/tasks/node": [ "./packages/angular_devkit/schematics/tasks/node/index" ],
"@angular-devkit/schematics/tools": [ "./packages/angular_devkit/schematics/tools/index" ],
"@angular-devkit/schematics/testing": [ "./packages/angular_devkit/schematics/testing/index" ],
"@angular-devkit/build-optimizer": [ "./packages/angular_devkit/build_optimizer/src/index" ],
"@angular-devkit/architect": [ "./packages/angular_devkit/architect/src/index" ],
"@angular-devkit/architect/testing": [ "./packages/angular_devkit/architect/testing/index" ],
"@angular-devkit/build-webpack": [ "./packages/angular_devkit/build_webpack/src/index" ],
"@ngtools/webpack": [ "./packages/ngtools/webpack/src/index" ],
"@ngtools/webpack/*": [ "./packages/ngtools/webpack/*" ],
"@schematics/angular": [ "./packages/schematics/angular/index" ]
}
},
"bazelOptions": {
"suppressTsconfigOverrideWarnings": true
},
"exclude": [
"bazel-*/**/*",
"dist/**/*",
"node_modules/**/*",
"packages/_/devkit/**/*files/**/*",
"packages/schematics/*/*/*files/**/*",
"tmp/**/*",
"scripts/patches/**/*",
"tests/**/*"
]
}