forked from cstefanache/angular2-img-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system.config.js
50 lines (42 loc) · 1.49 KB
/
system.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
(function (global) {
// map tells the System loader where to look for things
var map = {
'app': 'dist', // 'dist',
'rxjs': 'node_modules/rxjs',
'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api',
'@angular': 'node_modules/@angular',
'ng2-img-cropper': 'ng2-img-cropper',
"ng2-tabs": "node_modules/ng2-tabs"
};
// packages tells the System loader how to load when no filename and/or no extension
var packages = {
'app': {main: 'main.js', defaultExtension: 'js'},
'rxjs': {defaultExtension: 'js'},
'angular2-in-memory-web-api': {defaultExtension: 'js'},
"ng2-tabs": { "main": "index.js", "defaultExtension": "js" }
};
var packageNames = [
'common',
'compiler',
'forms',
'core',
'platform-browser',
'platform-browser-dynamic'
];
// add package entries for angular packages in the form '@angular/common': { main: 'index.umd.js', defaultExtension: 'js' }
packageNames.forEach(function (pkgName) {
packages['@angular/' + pkgName] = {
main: '/bundles/' + pkgName + '.umd.js',
defaultExtension: 'js'
};
});
var config = {
map: map,
packages: packages
};
// filterSystemConfig - index.html's chance to modify config before we register it.
if (global.filterSystemConfig) {
global.filterSystemConfig(config);
}
System.config(config);
})(this);