-
Notifications
You must be signed in to change notification settings - Fork 5
/
systemjs.config.js
65 lines (64 loc) · 2.35 KB
/
systemjs.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* System configuration for Angular samples
* Adjust as necessary for your application needs.
*/
(function (global) {
var angular2SemanticUiPackages = [
'angular2-semantic-ui',
'angular2-semantic-ui/components/checkbox',
'angular2-semantic-ui/components/dimmer',
'angular2-semantic-ui/components/dropdown',
'angular2-semantic-ui/components/loader',
'angular2-semantic-ui/components/modal',
'angular2-semantic-ui/components/progress',
'angular2-semantic-ui/components/tab',
'angular2-semantic-ui/components/accordion',
'angular2-semantic-ui/components/accordion_panel',
'angular2-semantic-ui/components/popup',
'angular2-semantic-ui/components/pagination',
'angular2-semantic-ui/components/tags-input',
'angular2-semantic-ui/components/rating',
]
var config = {
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
}
}
}
angular2SemanticUiPackages.forEach(function (item) {
config.map[item] = 'npm:' + item;
config.packages[item] = {
main: './index.js',
defaultExtension: 'js'
}
});
System.config(config);
})(this);