-
Notifications
You must be signed in to change notification settings - Fork 0
/
jspm.config.js
48 lines (47 loc) · 950 Bytes
/
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
SystemJS.config({
paths: {
"npm:": "jspm_packages/npm/",
"github:": "jspm_packages/github/",
"jspointerlock/": "src/"
},
browserConfig: {
"baseURL": "/"
},
devConfig: {
"map": {
"plugin-babel": "npm:systemjs-plugin-babel@0.0.20"
}
},
transpiler: "plugin-babel",
packages: {
"jspointerlock": {
"main": "index.js",
"meta": {
"*.js": {
"loader": "plugin-babel"
}
}
}
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"assert": "npm:jspm-nodelibs-assert@0.2.0",
"events": "github:jspm/nodelibs-events@0.1.1",
"jquery": "npm:jquery@3.1.1",
"process": "npm:jspm-nodelibs-process@0.2.0",
"util": "npm:jspm-nodelibs-util@0.2.1"
},
packages: {
"github:jspm/nodelibs-events@0.1.1": {
"map": {
"events": "npm:events@1.0.2"
}
}
}
});