-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsystem.config.js
51 lines (51 loc) · 1.28 KB
/
system.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
System.config({
baseURL: "./",
paths: {
"github:*": "jspm_packages/github/*",
"npm:*": "jspm_packages/npm/*"
},
bundles: {
"node_modules/dist/awayjs-core.js": ["awayjs-core/lib/utils/getTimer"]
},
defaultExtension: "ts",
meta: {
"*.ts": {
loader: "ts"
}
},
packages: {
"lib": {
defaultExtension: "ts",
meta: {
"*.ts": {
loader: "ts"
}
},
},
"awayjs-core": {
defaultExtension: false,
},
"ts": {
defaultExtension: "js",
},
"typescript": {
defaultExtension: "js",
}
},
map: {
"ts": "github:frankwallis/[email protected]",
"typescript": "npm:[email protected]",
"github:frankwallis/[email protected]": {
"typescript": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"os-browserify": "npm:[email protected]"
},
"npm:[email protected]": {
"os": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"os": "github:jspm/[email protected]"
}
}
});