forked from manar007/frontend-tech-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
47 lines (43 loc) · 1 KB
/
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
43
44
45
46
47
var webpack = require('webpack');
var path = require('path');
var BUILD_DIR = path.resolve(__dirname, 'public/js');
var APP_DIR = path.resolve(__dirname, 'src/client');
var config = {
entry: APP_DIR + '/index.js',
output: {
path: BUILD_DIR,
filename: 'bundle.js'
},
externals: {
'cheerio': 'window',
'react/addons': true,
'react/lib/ExecutionEnvironment': true,
'react/lib/ReactContext': true
},
resolve: {
alias: {
'~': path.join(__dirname, 'src/client')
},
extensions: ['.js', '.jsx']
},
module : {
loaders : [
{
test: /\.js?$/,
include : APP_DIR,
loader: 'babel-loader',
query:
{
presets:['es2015','react','stage-0'],
plugins: ["transform-es2015-destructuring", "transform-object-rest-spread"]
}
},
{
test: /\.scss$/,
include: APP_DIR,
loaders: ["style-loader", "css-loader", "sass-loader"]
}
]
}
};
module.exports = config;