-
Notifications
You must be signed in to change notification settings - Fork 0
/
jspm.config.js
63 lines (62 loc) · 1.24 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
61
62
63
SystemJS.config({
browserConfig: {
"paths": {
"npm:": "/jspm_packages/npm/",
"github:": "/jspm_packages/github/"
}
},
nodeConfig: {
"paths": {
"npm:": "jspm_packages/npm/",
"github:": "jspm_packages/github/"
}
},
devConfig: {
"map": {
"fs": "npm:jspm-nodelibs-fs@0.2.1",
"path": "npm:jspm-nodelibs-path@0.2.3",
"process": "npm:jspm-nodelibs-process@0.2.1"
}
},
transpiler: "plugin-babel",
paths: {
"jquery": "test/vendor/jquery.js",
"underscore": "test/vendor/underscore.js",
"backbone": "test/vendor/backbone.js"
},
meta: {
"dist/*.js": {
"build": false
},
"test/vendor/*": {
"build": false
}
},
packages: {
"src": {
"main": "ig_backgrid.js",
"map": {
"backgrid": "./backgrid.es6.js"
},
"defaultExtension": false,
"meta": {
"*.js": {
"loader": "plugin-babel"
}
}
}
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"css": "github:systemjs/plugin-css@0.1.36",
"plugin-babel": "npm:systemjs-plugin-babel@0.0.25",
"less": "npm:systemjs-less-plugin@2.2.1"
},
packages: {}
});