angular/packages/compiler-cli/integrationtest/tsconfig-build.json
Andrew Kushnir 83a6e203e3 refactor(compiler): drop obsolete NgFactory and NgSummary config options (#48268)
The options to generate NgFactory and NgSummary files were added to Ivy for backwards compatibility with ViewEngine. Since ViewEngine was deprecated and removed, the NgFactory and NgSummary files are no longer used as well.

This commit drops obsolete options to generate NgFactory and NgSummary files. Also, the logic that generates those files is also removed.

PR Close #48268
2023-02-21 13:03:59 -08:00

33 lines
854 B
JSON

{
"angularCompilerOptions": {
"alwaysCompileGeneratedCode": true,
"annotationsAs": "static fields",
"debug": true,
"i18nFormat": "xlf"
},
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom"],
"moduleResolution": "node",
"noImplicitAny": true,
"noUnusedLocals": true,
"rootDir": "",
"skipLibCheck": true,
"sourceMap": true,
"strictNullChecks": true,
// compatible with the option. Disabled until the integration test support the strict flag.
// TODO(devversion): this has been enabled without the integration test code being
"strictPropertyInitialization": false,
"target": "es2015",
"typeRoots": ["node_modules/@types"]
},
"files": [
"src/module",
"src/bootstrap",
"test/all_spec",
]
}