-
Notifications
You must be signed in to change notification settings - Fork 0
/
jspm.config.js
60 lines (59 loc) · 1.31 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
54
55
56
57
58
59
60
SystemJS.config({
paths: {
"npm:": "jspm_packages/npm/",
"github:": "jspm_packages/github/",
"htz-a11y-tabs/": "src/"
},
browserConfig: {
"baseURL": "/"
},
devConfig: {
"map": {
"plugin-babel": "npm:systemjs-plugin-babel@0.0.13"
}
},
transpiler: "plugin-babel",
packages: {
"htz-a11y-tabs": {
"main": "index.js",
"meta": {
"*.js": {
"loader": "plugin-babel"
}
}
}
},
map: {
"babel": "npm:babel-core@5.8.38",
"babel-runtime": "npm:babel-runtime@5.8.38",
"core-js": "npm:core-js@1.2.7",
"path": "github:jspm/nodelibs-path@0.2.0-alpha"
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"htz-dispatch-event": "github:haaretz/htz-dispatch-event@1.0.3",
"buffer": "github:jspm/nodelibs-buffer@0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@0.2.0-alpha",
"process": "github:jspm/nodelibs-process@0.2.0-alpha"
},
packages: {
"github:jspm/nodelibs-buffer@0.2.0-alpha": {
"map": {
"buffer-browserify": "npm:buffer@4.7.1"
}
},
"npm:buffer@4.7.1": {
"map": {
"ieee754": "npm:ieee754@1.1.6",
"isarray": "npm:isarray@1.0.0",
"base64-js": "npm:base64-js@1.1.2"
}
}
}
});