forked from RainLoop/rainloop-webmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
42 lines (41 loc) · 911 Bytes
/
webpack.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
var webpack = require('webpack');
module.exports = {
entry: {
'app': __dirname + '/dev/app.js',
'admin': __dirname + '/dev/admin.js'
},
output: {
pathinfo: true,
path: __dirname + '/rainloop/v/0.0.0/static/js/',
filename: '[name].js',
publicPath: 'rainloop/v/0.0.0/static/js/',
chunkFilename: '[chunkhash].chunk.js'
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin()
],
resolve: {
modulesDirectories: [__dirname + '/dev/'],
extensions: ['', '.js'],
alias: {
"ko": __dirname + "/dev/External/ko.js"
}
},
externals: {
'window': 'window',
'JSON': 'JSON',
'JSEncrypt': 'window.JSEncrypt',
'$LAB': 'window.$LAB',
'SimplePace': 'window.SimplePace',
'moment': 'moment',
'ifvisible': 'ifvisible',
'crossroads': 'crossroads',
'hasher': 'hasher',
'Jua': 'Jua',
'Autolinker': 'Autolinker',
'ssm': 'ssm',
'key': 'key',
'_': '_',
'$': 'jQuery'
}
};