我在选择“Ivy”的同时升级到了 Angular 8.0。一切都可以编译,但就捆绑包大小而言,结果令人失望。实际上,与 ng7 相比,我与 Angular 的供应商捆绑包的大小有所增加。
没配置对吧?
- 我正在使用节点 12
- @angular 8.0 和 @ngtool 8.01
tsconfig
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"noImplicitAny": false,
"noEmitOnError": true,
"sourceMap": false,
"inlineSourceMap": false,
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": false,
"allowJs": false,
"noStrictGenericChecks": true,
"noEmit": false,
"lib": [ "es6", "dom" ],
},
"angularCompilerOptions": {
"skipMetadataEmit": true,
"enableIvy": "ngtsc",
"allowEmptyCodegenFiles": true
}
}