-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
45 lines (43 loc) · 1.27 KB
/
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
System.config({
"baseURL": "/",
"transpiler": "babel",
"babelOptions": {
"optional": [
"runtime"
]
},
"paths": {
"*": "*.js",
"npm:*": "jspm_packages/npm/*.js",
"github:*": "jspm_packages/github/*.js"
}
});
System.config({
"map": {
"angular": "github:angular/bower-angular@1.3.15",
"angular-mocks": "github:angular/bower-angular-mocks@1.3.15",
"angular-new": "npm:angular@1.4.0-rc.0",
"angular-ui-router": "github:angular-ui/ui-router@0.2.13",
"babel": "npm:babel-core@5.1.9",
"babel-runtime": "npm:babel-runtime@5.1.9",
"core-js": "npm:core-js@0.8.3",
"text": "github:systemjs/plugin-text@0.0.2",
"traceur": "github:jmcriffey/bower-traceur@0.0.87",
"traceur-runtime": "github:jmcriffey/bower-traceur-runtime@0.0.87",
"github:angular-ui/ui-router@0.2.13": {
"angular": "github:angular/bower-angular@1.3.15"
},
"github:angular/bower-angular-mocks@1.3.15": {
"angular": "github:angular/bower-angular@1.3.15"
},
"github:jspm/nodelibs-process@0.1.1": {
"process": "npm:process@0.10.1"
},
"npm:angular@1.4.0-rc.0": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:core-js@0.8.3": {
"process": "github:jspm/nodelibs-process@0.1.1"
}
}
});