blob: 55ac161464ac062dff59f6d33f01d6c62d6a9c43 [file] [log] [blame]
Sean Condondfc6dba2019-11-09 11:50:23 +00001// Workaround for https://github.com/angular/angular/issues/18810
2// This file is required because when using the Angular NPM packages and building
3// with AOT compilation, NGC needs the "ngsummary.json" files.
4{
5 "compilerOptions": {
6 "lib": [
7 "dom",
8 "es2017"
9 ],
10 "experimentalDecorators": true,
11 "types": [],
12 "module": "amd",
13 "moduleResolution": "node"
14 },
15 "include": [
16 "node_modules/@angular/**/*"
17 ],
18 "exclude": [
19 "node_modules/@angular/bazel/**",
20 "node_modules/@angular/**/schematics/**",
21 "node_modules/@angular/**/testing/**",
22 "node_modules/@angular/compiler-cli/**",
23 "node_modules/@angular/common/upgrade*",
24 "node_modules/@angular/router/upgrade*",
25 "node_modules/@angular/cli/**"
26 ]
27}