angular-cn/packages/compiler-cli/tsconfig-build.json
Charles Lyding fc8eecad3f fix(compiler-cli): remove unused CLI private exports (#33242)
These exports are no longer used by the CLI since 7.1.0.  Since major versions of the CLI are now locked to major versions of the framework, a CLI user will not be able to use FW 9.0+ on an outdated version (<7.1.0) of the CLI that uses these old APIs.

PR Close #33242
2019-11-01 17:43:47 +00:00

41 lines
812 B
JSON

{
"extends": "../tsconfig-build.json",
"compilerOptions": {
"module": "commonjs",
"stripInternal": false,
"target": "es2015",
"lib": [
"es2015",
"es2017.object",
],
"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",
"src/language_services.ts",
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/jasmine/index.d.ts",
"../../node_modules/zone.js/dist/zone.js.d.ts"
]
}