forked from stephnr/electron-angular-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
31 lines (30 loc) · 834 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
System.config({
baseURL: "c:\\Users\\strodrig\\AppData\\Roaming\\npm\\node_modules\\jspm\\lib\\config/",
defaultJSExtensions: true,
transpiler: "babel",
babelOptions: {
"optional": [
"runtime"
]
},
paths: {
"github:*": "jspm_packages/github/*",
"npm:*": "jspm_packages/npm/*"
},
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"
}
}
});