mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
e6710b0bbd
Updates the dynamic-compiler test to be compatible with the APF v13. As of v13, the packages no longer come with metadata.json files and now need to be processed with the babel linker plugin. This commit sets up the linker plugin, and switches away from the deprecated systemjs approach to a simpler rollup code-splitting variant. PR Close #43431
29 lines
635 B
JSON
29 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2020", "dom"],
|
|
"sourceMap": true,
|
|
"pretty": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitUseStrict": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./dist",
|
|
"types": [
|
|
]
|
|
},
|
|
"files": [
|
|
"src/main.ts",
|
|
"src/lazy.module.ts"
|
|
]
|
|
}
|