-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjspm.config.js
51 lines (50 loc) · 1.39 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
SystemJS.config({
transpiler: "plugin-babel",
packages: {
"bitbox-component": {
"main": "index.js",
"meta": {
"*.js": {
"loader": "plugin-babel"
}
}
}
},
meta: {
"*.box": {
"loader": "bitbox-transpiler"
}
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"bitbox": "npm:bitbox@1.0.45",
"bitbox-transpiler": "npm:bitbox-transpiler@1.0.7",
"fs": "github:jspm/nodelibs-fs@0.2.0-alpha",
"net": "github:jspm/nodelibs-net@0.2.0-alpha",
"plugin-babel": "npm:systemjs-plugin-babel@0.0.9",
"process": "github:jspm/nodelibs-process@0.2.0-alpha",
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@0.5.7",
"tty": "github:jspm/nodelibs-tty@0.2.0-alpha",
"util": "github:jspm/nodelibs-util@0.2.0-alpha"
},
packages: {
"github:capaj/systemjs-hot-reloader@0.5.7": {
"map": {
"debug": "npm:debug@2.2.0",
"socket.io-client": "github:socketio/socket.io-client@1.4.5",
"weakee": "npm:weakee@1.0.0"
}
},
"npm:debug@2.2.0": {
"map": {
"ms": "npm:ms@0.7.1"
}
}
}
});