-
Notifications
You must be signed in to change notification settings - Fork 0
/
jspm.config.js
51 lines (50 loc) · 1.02 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({
paths: {
"github:": "jspm_packages/github/",
"npm:": "jspm_packages/npm/"
},
browserConfig: {
"baseURL": "/"
},
devConfig: {
"map": {
"core-js": "npm:core-js@1.2.7",
"path": "github:jspm/nodelibs-path@0.2.0-alpha",
"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.16"
},
"packages": {
"npm:core-js@1.2.7": {
"map": {
"systemjs-json": "github:systemjs/plugin-json@0.1.2"
}
}
}
},
transpiler: "plugin-babel",
babelOptions: {
"optional": [
"runtime",
"optimisation.modules.system"
],
"modularRuntime": false
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"dot-prop": "npm:dot-prop@4.0.0"
},
packages: {
"npm:dot-prop@4.0.0": {
"map": {
"is-obj": "npm:is-obj@1.0.1"
}
}
}
});