forked from stephnr/electron-angular-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
34 lines (32 loc) · 858 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
System.config({
"baseURL": "c:\\Users\\strodrig\\AppData\\Roaming\\npm\\node_modules\\jspm\\lib\\config/",
"transpiler": "babel",
"babelOptions": {
"optional": [
"runtime"
]
},
"paths": {
"*": "*.js",
"github:*": "jspm_packages/github/*.js",
"npm:*": "jspm_packages/npm/*.js"
}
});
System.config({
"map": {
"babel": "npm:babel-core@5.6.11",
"babel-runtime": "npm:babel-runtime@5.6.11",
"core-js": "npm:core-js@0.9.18",
"github:jspm/nodelibs-process@0.1.1": {
"process": "npm:process@0.10.1"
},
"npm:babel-runtime@5.6.11": {
"process": "github:jspm/nodelibs-process@0.1.1"
},
"npm:core-js@0.9.18": {
"fs": "github:jspm/nodelibs-fs@0.1.2",
"process": "github:jspm/nodelibs-process@0.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
}
}
});