forked from passbolt/passbolt-appjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstealconfig.js
38 lines (38 loc) · 1005 Bytes
/
stealconfig.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
steal.config({
main: 'passbolt',
map: {
"jquery/jquery": "jquery",
"urijs": "node_modules/urijs/src"
},
paths: {
"can": "node_modules/can/can.js",
"can/*": "node_modules/can/*.js",
"jquery": "node_modules/jquery/dist/jquery.js",
"moment": "node_modules/moment/moment.js",
"moment-timezone-with-data": "node_modules/moment-timezone/builds/moment-timezone-with-data.js",
"sha1": "node_modules/jssha/src/sha.js",
"underscore": "node_modules/underscore/underscore.js",
"xregexp": "node_modules/xregexp/xregexp-all.js",
"passbolt-mad": "node_modules/passbolt-mad/passbolt-mad.js",
"passbolt-mad/*": "node_modules/passbolt-mad/*.js"
},
"meta": {
"mocha": {
"format": "global",
"exports": "mocha",
"deps": [
"steal-mocha/add-dom"
]
}
},
ext: {
"ejs": "passbolt-mad/lib/can/viewEjsSystem"
}
});
System.config({
buildConfig: {
map: {
"can/util/util": "can/util/domless/domless"
}
}
});