build: remove references to tsc-wrapped
(#19298)
With this commit `ngc` is used instead of `tsc-wrapped` for collecting metadata and tsickle rewriting and `tsc-wrapped` is removed from the repository. `@angular/tsc-wrapped@5` is now deprecated and is no longer used, updated, or maintained as part as of Angular 5.x.x. `@angular/tsc-wrapped@4` is still maintained and required by Angular 4.x.x and will be maintained as long as 4.x.x is in LTS. PR Close #19298
This commit is contained in:

committed by
Igor Minar

parent
4c73b52d5c
commit
f96142cd7c
@ -12,7 +12,6 @@
|
||||
"@angular/common": "file:../../../dist/packages-dist/common",
|
||||
"@angular/compiler": "file:../../../dist/packages-dist/compiler",
|
||||
"@angular/compiler-cli": "file:../../../dist/packages-dist/compiler-cli",
|
||||
"@angular/tsc-wrapped": "file:../../../dist/packages-dist/tsc-wrapped",
|
||||
"@angular/core": "file:../../../dist/packages-dist/core",
|
||||
"@angular/http": "file:../../../dist/packages-dist/http",
|
||||
"@angular/platform-browser": "file:../../../dist/packages-dist/platform-browser",
|
||||
|
@ -5,13 +5,16 @@
|
||||
"baseUrl": ".",
|
||||
"rootDir": "../",
|
||||
"paths": {
|
||||
"@angular/animations": ["../../../dist/packages/animations"],
|
||||
"@angular/animations/browser": ["../../../dist/packages/animations/browser"],
|
||||
"@angular/core": ["../../../dist/packages/core"],
|
||||
"@angular/core/testing": ["../../../dist/packages/core/testing"],
|
||||
"@angular/common": ["../../../dist/packages/common"],
|
||||
"@angular/common/http": ["../../../dist/packages/common/http"],
|
||||
"@angular/common/testing": ["../../../dist/packages/common/testing"],
|
||||
"@angular/compiler": ["../../../dist/packages/compiler"],
|
||||
"@angular/compiler/testing": ["../../../dist/packages/compiler/testing"],
|
||||
"@angular/http": ["../../../dist/packages/http"],
|
||||
"@angular/platform-browser": ["../../../dist/packages/platform-browser"],
|
||||
"@angular/platform-browser/animations": ["../../../dist/packages/platform-browser/animations"],
|
||||
"@angular/platform-browser/testing": ["../../../dist/packages/platform-browser/testing"],
|
||||
@ -31,7 +34,8 @@
|
||||
|
||||
"angularCompilerOptions": {
|
||||
"annotateForClosureCompiler": true,
|
||||
"strictMetadataEmit": true,
|
||||
"strictMetadataEmit": false,
|
||||
"skipTemplateCodegen": true,
|
||||
"flatModuleOutFile": "testing.js",
|
||||
"flatModuleId": "@angular/platform-server/testing"
|
||||
}
|
||||
|
@ -5,6 +5,7 @@
|
||||
"baseUrl": ".",
|
||||
"rootDir": ".",
|
||||
"paths": {
|
||||
"@angular/animations": ["../../dist/packages/animations"],
|
||||
"@angular/animations/browser": ["../../dist/packages/animations/browser"],
|
||||
"@angular/core": ["../../dist/packages/core"],
|
||||
"@angular/common": ["../../dist/packages/common"],
|
||||
@ -26,7 +27,8 @@
|
||||
|
||||
"angularCompilerOptions": {
|
||||
"annotateForClosureCompiler": true,
|
||||
"strictMetadataEmit": true,
|
||||
"strictMetadataEmit": false,
|
||||
"skipTemplateCodegen": true,
|
||||
"flatModuleOutFile": "platform-server.js",
|
||||
"flatModuleId": "@angular/platform-server"
|
||||
}
|
||||
|
Reference in New Issue
Block a user