-
Notifications
You must be signed in to change notification settings - Fork 3
/
jspm.config.js
53 lines (52 loc) · 1.01 KB
/
jspm.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
SystemJS.config({
paths: {
"github:": "jspm_packages/github/",
"npm:": "jspm_packages/npm/",
"CAL/": "src/"
},
browserConfig: {
"baseURL": "/"
},
devConfig: {
"map": {
"babel-runtime": "npm:babel-runtime@5.8.20",
"core-js": "npm:core-js@0.9.18",
"process": "github:jspm/nodelibs-process@0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@0.2.0-alpha",
"plugin-babel": "npm:systemjs-plugin-babel@0.0.12"
},
"packages": {
"npm:babel-runtime@5.8.20": {
"map": {}
},
"npm:core-js@0.9.18": {
"map": {
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
}
}
}
},
transpiler: "plugin-babel",
babelOptions: {
"optional": [
"runtime"
]
},
map: {
"babel": "npm:babel-core@5.8.21"
},
packages: {
"CAL": {
"main": "index.js"
}
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {},
packages: {}
});