2019-02-15 13:27:13 -05:00
|
|
|
// 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.
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015"
|
|
|
|
],
|
|
|
|
"experimentalDecorators": true,
|
2019-03-21 23:59:44 -04:00
|
|
|
"types": [],
|
2019-03-25 14:06:10 -04:00
|
|
|
"module": "amd",
|
2019-03-21 23:59:44 -04:00
|
|
|
"moduleResolution": "node"
|
2019-02-15 13:27:13 -05:00
|
|
|
},
|
2019-03-25 14:06:10 -04:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
"enableSummariesForJit": true
|
|
|
|
},
|
2019-02-15 13:27:13 -05:00
|
|
|
"include": [
|
|
|
|
"node_modules/@angular/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules/@angular/bazel/**",
|
2019-03-21 23:59:44 -04:00
|
|
|
"node_modules/@angular/**/testing/**",
|
2019-06-24 10:43:26 -04:00
|
|
|
"node_modules/@angular/**/schematics/**",
|
|
|
|
"node_modules/@angular/compiler-cli/**",
|
2019-04-25 19:38:45 -04:00
|
|
|
"node_modules/@angular/common/upgrade*",
|
2019-06-24 10:43:26 -04:00
|
|
|
"node_modules/@angular/router/upgrade*"
|
2019-02-15 13:27:13 -05:00
|
|
|
]
|
|
|
|
}
|