forked from aurelia/dependency-injection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
37 lines (35 loc) · 910 Bytes
/
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
System.config({
"transpiler": "babel",
"babelOptions": {
"optional": [
"runtime",
"es7.decorators",
"es7.classProperties"
]
},
"paths": {
"*": "*.js",
"github:*": "jspm_packages/github/*.js",
"aurelia-dependency-injection/*": "dist/*.js",
"npm:*": "jspm_packages/npm/*.js"
}
});
System.config({
"map": {
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]",
"github:aurelia/[email protected]": {
"core-js": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"process": "npm:[email protected]"
},
"npm:[email protected]": {
"fs": "github:jspm/[email protected]",
"process": "github:jspm/[email protected]"
}
}
});