forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
67 lines (67 loc) · 2.41 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
{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": false,
"noUnusedLocals": false,
"outDir": "./dist",
"rootDir": ".",
"skipLibCheck": true,
"strict": true,
"target": "es2018",
"lib": [
"es2018"
],
"baseUrl": "",
"rootDirs": [
".",
"./dist-schema/",
"./bazel-bin/"
],
"typeRoots": [
"./node_modules/@types"
],
"types": [
"node"
],
"paths": {
"@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-angular": [ "./packages/angular_devkit/build_angular/src/index" ],
"@angular-devkit/build-webpack": [ "./packages/angular_devkit/build_webpack/src/index" ],
"@ngtools/webpack": [ "./packages/ngtools/webpack/src/index" ],
"@schematics/angular": [ "./packages/schematics/angular/index" ]
}
},
"bazelOptions": {
"suppressTsconfigOverrideWarnings": true
},
"exclude": [
"packages/angular_devkit/build_angular/src/typings.d.ts",
"bazel-out/**/*",
"dist/**/*",
"dist-schema/**",
"etc/api/**/*",
"etc/cli.angular.io/**/*",
"**/node_modules/**/*",
"**/third_party/**/*",
"packages/schematics/*/*/*files/**/*",
"packages/angular_devkit/*/test/**/*",
"tests/**/*",
"tools/**/*",
"integration/**/*",
".ng-dev/**/*"
]
}