-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.js
79 lines (79 loc) · 2.42 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
System.config({
defaultJSExtensions: true,
transpiler: "babel",
babelOptions: {
"optional": [
"runtime",
"optimisation.modules.system"
]
},
paths: {
"github:*": "jspm_packages/github/*",
"npm:*": "jspm_packages/npm/*"
},
separateCSS: true,
map: {
"angular": "github:angular/[email protected]",
"angular-ui-grid": "github:angular-ui/[email protected]",
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"bootstrap": "github:twbs/[email protected]",
"core-js": "npm:[email protected]",
"css": "github:systemjs/[email protected]",
"less": "npm:[email protected]",
"mystyles": "./app/styles",
"ravi": "github:sravikiran/JSPM-SystemJS-Demos@master",
"tracer": "npm:[email protected]",
"tracer-runtime": "npm:[email protected]",
"traceur": "github:jmcriffey/[email protected]",
"underscore": "npm:[email protected]",
"github:components/[email protected]": {
"jquery": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"assert": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"path-browserify": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"process": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"util": "npm:[email protected]"
},
"github:sravikiran/JSPM-SystemJS-Demos@master": {
"bootstrap": "github:twbs/[email protected]",
"jquery": "npm:[email protected]",
"jquery-ui": "github:components/[email protected]"
},
"github:twbs/[email protected]": {
"jquery": "npm:[email protected]"
},
"npm:[email protected]": {
"util": "npm:[email protected]"
},
"npm:[email protected]": {
"process": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"fs": "github:jspm/[email protected]",
"path": "github:jspm/[email protected]",
"process": "github:jspm/[email protected]",
"systemjs-json": "github:systemjs/[email protected]"
},
"npm:[email protected]": {
"util": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"process": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"assert": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"inherits": "npm:[email protected]",
"process": "github:jspm/[email protected]"
}
}
});