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/testing package.
*/
export * from './src/testing';

View File

@ -0,0 +1,6 @@
{
"typings": "../typings/testing/index.d.ts",
"main": "../bundles/compiler-testing.umd.js",
"module": "../@angular/compiler/testing.es5.js",
"es2015": "../@angular/compiler/testing.js"
}

View File

@ -1,17 +1,17 @@
{
"extends": "./tsconfig-build",
"extends": "../tsconfig-build",
"compilerOptions": {
// Test that we rely on decorator downleveling
"emitDecoratorMetadata": false,
"paths": {
"@angular/core": ["../../../dist/packages-dist/core"],
"@angular/core/testing": ["../../../dist/packages-dist/core/testing"],
"@angular/compiler": ["../../../dist/packages-dist/compiler"]
"@angular/core": ["../../dist/packages/core"],
"@angular/core/testing": ["../../dist/packages/core/testing"],
"@angular/compiler": ["../../dist/packages/compiler"]
}
},
"files": [
"testing/index.ts",
"index.ts",
"../../../node_modules/zone.js/dist/zone.js.d.ts"
]
}