-
Notifications
You must be signed in to change notification settings - Fork 1
/
jspm.config.js
93 lines (92 loc) · 2.23 KB
/
jspm.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
81
82
83
84
85
86
87
88
89
90
91
92
93
SystemJS.config({
paths: {
"github:": "jspm/github/",
"npm:": "jspm/npm/"
},
browserConfig: {
"baseURL": "/static",
"paths": {
"client/": "js/client/",
"common/": "js/common/"
}
},
nodeConfig: {
"paths": {
"client/": "client/",
"common/": "common/"
}
},
devConfig: {
"map": {
"css": "github:systemjs/plugin-css@0.1.36"
}
},
transpiler: false,
meta: {
"*.css": {
"loader": "css"
},
"npm:bootstrap*/dist/js/*": {
"format": "global",
"deps": [
"jquery",
"popper.js"
],
"globals": {
"Popper": "popper.js"
}
}
},
packages: {
"js/client": {
"format": "system",
"defaultExtension": "js"
},
"js/common": {
"format": "system",
"defaultExtension": "js"
},
"npm:moment@2.19.1": {
"format": "cjs"
}
}
});
SystemJS.config({
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
"bootstrap": "npm:bootstrap@4.0.0-beta.2",
"eonasdan-bootstrap-datetimepicker": "npm:eonasdan-bootstrap-datetimepicker@4.17.47",
"font-awesome": "npm:font-awesome@4.7.0",
"jquery": "npm:jquery@3.2.1",
"moment": "npm:moment@2.19.2",
"moment-timezone": "npm:moment-timezone@0.5.14",
"popper.js": "npm:popper.js@1.12.6"
},
packages: {
"npm:bootstrap@4.0.0-beta.2": {
"map": {
"jquery": "npm:jquery@3.2.1",
"tether": "github:HubSpot/tether@1.4.1"
}
},
"npm:font-awesome@4.7.0": {
"map": {
"css": "github:systemjs/plugin-css@0.1.36"
}
},
"npm:eonasdan-bootstrap-datetimepicker@4.17.47": {
"map": {
"moment-timezone": "npm:moment-timezone@0.5.14"
}
},
"npm:moment-timezone@0.5.14": {
"map": {
"moment": "npm:moment@2.19.2"
}
}
}
});