-
Notifications
You must be signed in to change notification settings - Fork 1
/
jspm.config.js
64 lines (63 loc) · 1.28 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
64
SystemJS.config({
paths: {
"github:": "jspm_packages/github/",
"npm:": "jspm_packages/npm/"
},
browserConfig: {
"baseURL": "/"
},
devConfig: {
"map": {
"typescript": "npm:typescript@1.8.10",
"os": "github:jspm/nodelibs-os@0.2.0-alpha",
"plugin-typescript": "github:frankwallis/plugin-typescript@4.0.16"
},
"packages": {
"npm:typescript@1.8.10": {
"map": {}
},
"github:jspm/nodelibs-os@0.2.0-alpha": {
"map": {
"os-browserify": "npm:os-browserify@0.2.1"
}
},
"github:frankwallis/plugin-typescript@4.0.16": {
"map": {
"typescript": "npm:typescript@1.8.10"
}
}
}
},
transpiler: "plugin-typescript",
typescriptOptions: {
tsconfig: true
},
meta: {
"*.ts": {
loader: "plugin-typescript"
}
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"page": "npm:page@1.7.1",
"process": "github:jspm/nodelibs-process@0.2.0-alpha"
},
packages: {
"npm:page@1.7.1": {
"map": {
"path-to-regexp": "npm:path-to-regexp@1.2.1"
}
},
"npm:path-to-regexp@1.2.1": {
"map": {
"isarray": "npm:isarray@0.0.1"
}
}
}
});