@@ -3,27 +3,28 @@ declare const System: any;
33
44// Apply the CLI SystemJS configuration.
55System . config ( {
6+ paths : {
7+ 'node:*' : 'node_modules/*' ,
8+ } ,
69 map : {
7- 'rxjs' : 'vendor/ rxjs' ,
10+ 'rxjs' : 'node: rxjs' ,
811 'main' : 'main.js' ,
912
1013 // Angular specific mappings.
11- '@angular/core' : 'vendor/@angular/core/bundles/core.umd.js' ,
12- '@angular/common' : 'vendor/@angular/common/bundles/common.umd.js' ,
13- '@angular/compiler' : 'vendor/@angular/compiler/bundles/compiler.umd.js' ,
14- '@angular/http' : 'vendor/@angular/http/bundles/http.umd.js' ,
15- '@angular/forms' : 'vendor/@angular/forms/bundles/forms.umd.js' ,
16- '@angular/router' : 'vendor/@angular/router/bundles/router.umd.js' ,
17- '@angular/animations' : 'vendor/@angular/animations/bundles/animations.umd.js' ,
18- '@angular/animations/browser' : 'vendor/@angular/animations/bundles/animations-browser.umd.js' ,
14+ '@angular/core' : 'node:@angular/core/bundles/core.umd.js' ,
15+ '@angular/common' : 'node:@angular/common/bundles/common.umd.js' ,
16+ '@angular/compiler' : 'node:@angular/compiler/bundles/compiler.umd.js' ,
17+ '@angular/http' : 'node:@angular/http/bundles/http.umd.js' ,
18+ '@angular/forms' : 'node:@angular/forms/bundles/forms.umd.js' ,
19+ '@angular/router' : 'node:@angular/router/bundles/router.umd.js' ,
20+ '@angular/animations' : 'node:@angular/animations/bundles/animations.umd.js' ,
21+ '@angular/animations/browser' : 'node:@angular/animations/bundles/animations-browser.umd.js' ,
22+ '@angular/platform-browser' : 'node:@angular/platform-browser/bundles/platform-browser.umd.js' ,
1923 '@angular/platform-browser/animations' :
20- 'vendor/@angular/platform-browser/bundles/platform-browser-animations.umd.js' ,
21- '@angular/platform-browser' : 'vendor/@angular/platform-browser/bundles/platform-browser.umd.js' ,
22- '@angular/platform-browser/testing' :
23- 'vendor/@angular/platform-browser/bundles/platform-browser-testing.umd.js' ,
24+ 'node:@angular/platform-browser/bundles/platform-browser-animations.umd.js' ,
2425 '@angular/platform-browser-dynamic' :
25- 'vendor/ @angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js' ,
26- '@angular/material' : '@angular/material /bundles/material.umd.js'
26+ 'node: @angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js' ,
27+ '@angular/material' : 'dist /bundles/material.umd.js'
2728 } ,
2829 packages : {
2930 // Thirdparty barrels.
0 commit comments