-
Notifications
You must be signed in to change notification settings - Fork 1
/
jspm.config.js
52 lines (51 loc) · 1.04 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
SystemJS.config({
baseURL: "/",
paths: {
"npm:": "jspm_packages/npm/",
"dist/": "example/dist/",
"riot": "node_modules/riot/riot.js",
"tag": "systemjs-riot.js",
"tags/": "example/tags/",
"github:": "jspm_packages/github/"
},
nodeConfig: {
"paths": {
"systemjs-riot/": ""
}
},
devConfig: {
"map": {
"plugin-babel": "npm:[email protected]",
"assert": "npm:[email protected]",
"vm": "npm:[email protected]"
}
},
transpiler: "plugin-babel",
meta: {
"riot": {
"build": false
},
"*.tag": {
"defaultExtension": false,
"loader": "tag",
"format": "esm"
}
},
map: {
"tag": "systemjs-riot.js",
"riot-compiler": "npm:[email protected]"
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"fs": "npm:[email protected]",
"path": "npm:[email protected]",
"process": "npm:[email protected]"
},
packages: {}
});