mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
37 lines
702 B
JSON
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"
|
|
]
|
|
}
|