forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular-tsconfig.json
44 lines (44 loc) · 1.64 KB
/
angular-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
// Workaround for https://github.com/angular/angular/issues/18810
// This file is required because when using the Angular NPM packages and building
// with AOT compilation, NGC needs the "ngsummary.json" files.
{
"angularCompilerOptions": {
// In snapshot builds the compiler-cli will now use ngtsc by default. In
// order to be able to build the summary files, we need to use ngc.
"enableIvy": false
},
"compilerOptions": {
"module": "umd",
"moduleResolution": "node",
"lib": [
"dom",
"es2015"
],
"experimentalDecorators": true,
"types": []
},
"include": [
"node_modules/@angular/**/*"
],
"exclude": [
"node_modules/@angular/**/schematics/**",
"node_modules/@angular/**/testing/**",
"node_modules/@angular/bazel/**",
"node_modules/@angular/common/upgrade*",
"node_modules/@angular/compiler-cli/**",
"node_modules/@angular/dev-infra-private/**",
"node_modules/@angular/router/upgrade*",
// We also list the packages built as part of this repository. The Bazel NodeJS rules can link
// these packages into the `node_modules/` folder and this would break the summary file generation.
"node_modules/@angular/cdk/**",
"node_modules/@angular/cdk-experimental/**",
"node_modules/@angular/components-examples/**",
"node_modules/@angular/google-maps/**",
"node_modules/@angular/material/**",
"node_modules/@angular/material-experimental/**",
"node_modules/@angular/material-moment-adapter/**",
"node_modules/@angular/material-luxon-adapter/**",
"node_modules/@angular/material-date-fns-adapter/**",
"node_modules/@angular/youtube-player/**"
]
}