-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
80 lines (79 loc) · 2.14 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
System.config({
defaultJSExtensions: true,
transpiler: "babel",
babelOptions: {
"blacklist": [],
"optional": [
"runtime"
],
"stage": 0
},
paths: {
"github:*": "jspm_packages/github/*",
"npm:*": "jspm_packages/npm/*"
},
map: {
"babel": "npm:babel-core@5.8.25",
"babel-runtime": "npm:babel-runtime@5.8.25",
"baobab": "npm:baobab@2.1.0",
"bluebird": "npm:bluebird@2.10.2",
"core-js": "npm:core-js@1.2.2",
"lodash": "npm:lodash@3.10.1",
"sp-log": "npm:sp-log@1.1.8",
"github:jspm/nodelibs-assert@0.1.0": {
"assert": "npm:assert@1.3.0"
},
"github:jspm/nodelibs-path@0.1.0": {
"path-browserify": "npm:path-browserify@0.0.0"
},
"github:jspm/nodelibs-process@0.1.2": {
"process": "npm:process@0.11.2"
},
"github:jspm/nodelibs-util@0.1.0": {
"util": "npm:util@0.10.3"
},
"npm:assert@1.3.0": {
"util": "npm:util@0.10.3"
},
"npm:babel-runtime@5.8.25": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:baobab@2.1.0": {
"emmett": "npm:emmett@3.1.1"
},
"npm:bluebird@2.10.2": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:bows@1.4.8": {
"andlog": "npm:andlog@1.0.0",
"fs": "github:jspm/nodelibs-fs@0.1.2"
},
"npm:core-js@1.2.2": {
"fs": "github:jspm/nodelibs-fs@0.1.2",
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.2",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
},
"npm:inherits@2.0.1": {
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:lodash@3.10.1": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:path-browserify@0.0.0": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:process@0.11.2": {
"assert": "github:jspm/nodelibs-assert@0.1.0"
},
"npm:sp-log@1.1.8": {
"bluebird": "npm:bluebird@2.10.2",
"bows": "npm:bows@1.4.8",
"lodash": "npm:lodash@3.10.1"
},
"npm:util@0.10.3": {
"inherits": "npm:inherits@2.0.1",
"process": "github:jspm/nodelibs-process@0.1.2"
}
}
});