I've upgraded to Angular 8.0 while opting in to "Ivy". Everything is compiling OK but results have been disappointing in terms of bundle sizes. Actually, my vendor bundle with Angular has increased in size vs ng7.
Not configured right?
- I'm using Node 12
- @angular 8.0 with @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
}
}