forked from angular/devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 1.73 KB
/
tsconfig.json
File metadata and controls
55 lines (55 loc) · 1.73 KB
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
{
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"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": "es6",
"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/schematics": [ "./packages/angular_devkit/schematics/src/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" ]
}
},
"exclude": [
"bazel-*/**/*",
"dist/**/*",
"node_modules/**/*",
"packages/schematics/*/*/*files/**/*",
"tmp/**/*",
"tests/**/*"
]
}