-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathwebpack.common.js
46 lines (45 loc) · 983 Bytes
/
webpack.common.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
/* eslint import/no-extraneous-dependencies: off */
const path = require('path');
const webpack = require('webpack'); // eslint-disable-line
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
mode: 'development',
devtool: 'inline-cheap-source-map',
entry: [
'@babel/polyfill',
'./src',
],
resolve: {
extensions: ['.js', '.jsx'],
modules: [
path.join(__dirname, 'src'),
'node_modules',
],
},
externals: {
react: 'React',
'react-dom': 'ReactDOM',
moment: 'moment',
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader?cacheDirectory=true',
},
],
},
plugins: [
new webpack.DefinePlugin({
ISPRODUCTION: process.env.NODE_ENV === 'production',
}),
new CleanWebpackPlugin([
'dist',
]),
],
output: {
filename: 'bundle-[hash].js',
path: path.resolve(__dirname, 'dist'),
},
};