-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjspm.config.js
52 lines (51 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
SystemJS.config({
transpiler: "plugin-typescript",
packages: {
"ng-rx-redux": {
"format": "esm",
"main": "ng-rx-redux.js",
"meta": {
"*.js": {
"loader": "plugin-typescript"
}
}
}
}
});
SystemJS.config({
packageConfigPaths: [
"github:*/*.json",
"npm:@*/*.json",
"npm:*.json"
],
map: {
"angular": "github:angular/[email protected]",
"buffer": "github:jspm/[email protected]",
"core-js": "npm:[email protected]",
"fs": "github:jspm/[email protected]",
"lodash": "npm:[email protected]",
"path": "github:jspm/[email protected]",
"plugin-typescript": "github:frankwallis/[email protected]",
"process": "github:jspm/[email protected]",
"rxjs": "npm:[email protected]"
},
packages: {
"github:jspm/[email protected]": {
"map": {
"buffer-browserify": "npm:[email protected]"
}
},
"github:frankwallis/[email protected]": {
"map": {
"typescript": "npm:[email protected]"
}
},
"npm:[email protected]": {
"map": {
"base64-js": "npm:[email protected]",
"ieee754": "npm:[email protected]",
"isarray": "npm:[email protected]"
}
}
}
});