-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfig.js
32 lines (31 loc) · 847 Bytes
/
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
System.config({
defaultJSExtensions: true,
transpiler: "babel",
babelOptions: {
"optional": [
"runtime",
"optimisation.modules.system"
]
},
paths: {
"github:*": "jspm_packages/github/*",
"npm:*": "jspm_packages/npm/*"
},
map: {
"babel": "npm:babel-core@5.2.16",
"babel-runtime": "npm:babel-runtime@5.1.11",
"bootstrap": "github:twbs/bootstrap@3.3.5",
"core-js": "npm:core-js@0.8.4",
"traceur": "github:jmcriffey/bower-traceur@0.0.87",
"traceur-runtime": "github:jmcriffey/bower-traceur-runtime@0.0.87",
"github:jspm/nodelibs-process@0.1.1": {
"process": "npm:process@0.10.1"
},
"github:twbs/bootstrap@3.3.5": {
"jquery": "github:components/jquery@2.1.4"
},
"npm:core-js@0.8.4": {
"process": "github:jspm/nodelibs-process@0.1.1"
}
}
});