0cc77b4a69
After this, neither @angular/compiler nor @angular/comnpiler-cli depend on @angular/core. This add a duplication of some interfaces and enums which is stored in @angular/compiler/src/core.ts BREAKING CHANGE: - `@angular/platform-server` now additionally depends on `@angular/platform-browser-dynamic` as a peer dependency. PR Close #18683
37 lines
866 B
JSON
37 lines
866 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"module": "commonjs",
|
|
"outDir": "../../dist/packages/compiler-cli",
|
|
"paths": {
|
|
"@angular/compiler": ["../../dist/packages/compiler"],
|
|
"@angular/tsc-wrapped": ["../../dist/packages-dist/tsc-wrapped"]
|
|
},
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"target": "es5",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"skipLibCheck": 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"
|
|
]
|
|
}
|