mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
400a6b5e37
With the recent changes in the Angular CLI (https://github.com/angular/angular-cli/pull/23938) the polyfills option accepts module path that are resolved using Node module resolution. Also, the polyfills.ts file is no longer generated by default. This commit changes the way on how the polyfill is added to the projects. PR Close #47569
21 lines
336 B
JSON
21 lines
336 B
JSON
{
|
|
"extends": "../../../tsconfig-build.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"stripInternal": false,
|
|
"target": "es2015",
|
|
"lib": [
|
|
"es2017",
|
|
],
|
|
},
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true,
|
|
},
|
|
"exclude": [
|
|
"index_spec.ts",
|
|
],
|
|
"files": [
|
|
"index.ts",
|
|
]
|
|
}
|