angular/packages/compiler-cli/tsconfig-build.json
JoostK 1922032786 refactor(compiler-cli): dismantle View Engine implementation of ngc (#44269)
This commit does a first-pass removal of the View Engine infrastructure
in compiler-cli. A more in-depth cleanup is necessary and large parts
of the View Engine compiler infrastructure remain within
`@angular/compiler`, this is just a first cleanup step.

PR Close #44269
2021-12-01 10:36:30 -08:00

37 lines
702 B
JSON

{
"extends": "../tsconfig-build.json",
"compilerOptions": {
"module": "es2020",
"stripInternal": false,
"target": "es2020",
"lib": [
"es2020"
],
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@angular/compiler": ["../../dist/packages/compiler"]
},
"strict": true,
"types": [
"node"
],
"outDir": "../../dist/packages/compiler-cli"
},
"bazelOptions": {
"suppressTsconfigOverrideWarnings": true
},
"exclude": [
"integrationtest"
],
"files": [
"index.ts",
"src/main.ts",
"src/extract_i18n.ts",
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/jasmine/index.d.ts"
]
}