build: fix file paths after moving modules/@angular/* to packages/*

This commit is contained in:
Jason Aden
2017-03-02 12:12:46 -08:00
parent 3e51a19983
commit 8573e36574
241 changed files with 1262 additions and 451 deletions

View File

@ -0,0 +1,15 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @module
* @description
* Entry point for all public APIs of the compiler-cli/esm5 package.
*/
export * from '../index';

View File

@ -1,8 +1,7 @@
{
"extends": "./tsconfig-build",
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"outDir": "../../../dist/esm/compiler-cli"
}
"extends": "../tsconfig-build",
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node"
}
}

View File

@ -1,34 +1,39 @@
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"module": "commonjs",
"outDir": "../../../dist/packages-dist/compiler-cli",
"paths": {
"@angular/core": ["../../../dist/packages-dist/core"],
"@angular/common": ["../../../dist/packages-dist/common"],
"@angular/compiler": ["../../../dist/packages-dist/compiler"],
"@angular/http": ["../../../dist/packages-dist/http"],
"@angular/platform-server": ["../../../dist/packages-dist/platform-server"],
"@angular/platform-browser": ["../../../dist/packages-dist/platform-browser"],
"@angular/tsc-wrapped": ["../../../dist/tools/@angular/tsc-wrapped"]
},
"rootDir": ".",
"sourceMap": true,
"inlineSources": true,
"target": "es5",
"lib": ["es6", "dom"],
"skipLibCheck": true
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"module": "commonjs",
"outDir": "../../dist/packages/compiler-cli",
"paths": {
"@angular/core": ["../../dist/packages/core"],
"@angular/common": ["../../dist/packages/common"],
"@angular/compiler": ["../../dist/packages/compiler"],
"@angular/http": ["../../dist/packages/http"],
"@angular/platform-server": ["../../dist/packages/platform-server"],
"@angular/platform-browser": ["../../dist/packages/platform-browser"],
"@angular/tsc-wrapped": ["../../dist/tools/@angular/tsc-wrapped"]
},
"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",
"../../../node_modules/zone.js/dist/zone.js.d.ts"
]
"rootDir": ".",
"sourceMap": true,
"inlineSources": true,
"target": "es5",
"lib": [
"es6",
"dom"
],
"skipLibCheck": 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",
"../../node_modules/zone.js/dist/zone.js.d.ts"
]
}