@@ -3,40 +3,40 @@ declare const System: any;
3
3
4
4
// Apply the CLI SystemJS configuration.
5
5
System . config ( {
6
+ paths : {
7
+ 'node:*' : 'node_modules/*'
8
+ } ,
6
9
map : {
7
- 'rxjs' : 'vendor/ rxjs' ,
10
+ 'rxjs' : 'node: rxjs' ,
8
11
'main' : 'main.js' ,
9
12
10
13
// Angular specific mappings.
11
- '@angular/core' : 'vendor/ @angular/core/bundles/core.umd.js' ,
12
- '@angular/core/testing' : 'vendor/ @angular/core/bundles/core-testing.umd.js' ,
13
- '@angular/common' : 'vendor/ @angular/common/bundles/common.umd.js' ,
14
- '@angular/common/testing' : 'vendor/ @angular/common/bundles/common-testing.umd.js' ,
15
- '@angular/compiler' : 'vendor/ @angular/compiler/bundles/compiler.umd.js' ,
16
- '@angular/compiler/testing' : 'vendor/ @angular/compiler/bundles/compiler-testing.umd.js' ,
17
- '@angular/http' : 'vendor/ @angular/http/bundles/http.umd.js' ,
18
- '@angular/http/testing' : 'vendor/ @angular/http/bundles/http-testing.umd.js' ,
19
- '@angular/forms' : 'vendor/ @angular/forms/bundles/forms.umd.js' ,
20
- '@angular/forms/testing' : 'vendor/ @angular/forms/bundles/forms-testing.umd.js' ,
21
- '@angular/animations' : 'vendor/ @angular/animations/bundles/animations.umd.js' ,
22
- '@angular/animations/browser' : 'vendor/ @angular/animations/bundles/animations-browser.umd.js' ,
14
+ '@angular/core' : 'node: @angular/core/bundles/core.umd.js' ,
15
+ '@angular/core/testing' : 'node: @angular/core/bundles/core-testing.umd.js' ,
16
+ '@angular/common' : 'node: @angular/common/bundles/common.umd.js' ,
17
+ '@angular/common/testing' : 'node: @angular/common/bundles/common-testing.umd.js' ,
18
+ '@angular/compiler' : 'node: @angular/compiler/bundles/compiler.umd.js' ,
19
+ '@angular/compiler/testing' : 'node: @angular/compiler/bundles/compiler-testing.umd.js' ,
20
+ '@angular/http' : 'node: @angular/http/bundles/http.umd.js' ,
21
+ '@angular/http/testing' : 'node: @angular/http/bundles/http-testing.umd.js' ,
22
+ '@angular/forms' : 'node: @angular/forms/bundles/forms.umd.js' ,
23
+ '@angular/forms/testing' : 'node: @angular/forms/bundles/forms-testing.umd.js' ,
24
+ '@angular/animations' : 'node: @angular/animations/bundles/animations.umd.js' ,
25
+ '@angular/animations/browser' : 'node: @angular/animations/bundles/animations-browser.umd.js' ,
23
26
'@angular/platform-browser/animations' :
24
- 'vendor/@angular/platform-browser/bundles/platform-browser-animations.umd.js' ,
25
- '@angular/platform-browser' : 'vendor/@angular/platform-browser/bundles/platform-browser.umd.js' ,
27
+ 'node:@angular/platform-browser/bundles/platform-browser-animations.umd' ,
28
+ '@angular/platform-browser' :
29
+ 'node:@angular/platform-browser/bundles/platform-browser.umd.js' ,
26
30
'@angular/platform-browser/testing' :
27
- 'vendor/ @angular/platform-browser/bundles/platform-browser-testing.umd.js' ,
31
+ 'node: @angular/platform-browser/bundles/platform-browser-testing.umd.js' ,
28
32
'@angular/platform-browser-dynamic' :
29
- 'vendor/ @angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js' ,
33
+ 'node: @angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js' ,
30
34
'@angular/platform-browser-dynamic/testing' :
31
- 'vendor/ @angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js' ,
35
+ 'node: @angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js'
32
36
} ,
33
37
packages : {
34
38
// Thirdparty barrels.
35
39
'rxjs' : { main : 'index' } ,
36
- '@angular/material' : {
37
- format : 'cjs' ,
38
- main : 'material.umd.js'
39
- } ,
40
40
// Set the default extension for the root package, because otherwise the demo-app can't
41
41
// be built within the production mode. Due to missing file extensions.
42
42
'.' : {
0 commit comments