我在Angular 4上有一个旧项目,并且该项目需要与IE11兼容,因此我添加了在IE上工作所需的所有pollyfills,并且还将tsconfig.ts文件更改为:
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"es6",
"dom"
]
}
}
但是当我使用ng build --prod
或ng build
时,ng build --prod --aot
我的供应商文件仍然包含箭头功能。 (=>
)