* Remove now unnecessary portions of build. * Add a compilePackageES5 method to build ES5 from sources * Rework all package.json and rollup config files to new format * Remove "extends" from tsconfig-build.json files and fixup compilation roots PR Close #18541
26 lines
681 B
JSON
26 lines
681 B
JSON
{
|
|
"extends": "../tsconfig-build.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": "../",
|
|
"paths": {
|
|
"@angular/core": ["../../../dist/packages/core"],
|
|
"@angular/platform-browser": ["../../../dist/packages/platform-browser"],
|
|
"@angular/router": ["../../../dist/packages/router"],
|
|
"@angular/upgrade/static": ["../../../dist/packages/upgrade/static"]
|
|
},
|
|
"outDir": "../../../dist/packages/router"
|
|
},
|
|
|
|
"files": [
|
|
"public_api.ts"
|
|
],
|
|
|
|
"angularCompilerOptions": {
|
|
"annotateForClosureCompiler": true,
|
|
"strictMetadataEmit": true,
|
|
"flatModuleOutFile": "index.js",
|
|
"flatModuleId": "@angular/router/upgrade"
|
|
}
|
|
}
|