-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
85 lines (81 loc) · 2.17 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
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
const fs = require('fs');
const HappyPack = require('happypack');
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
const nodeExternals = require('webpack-node-externals');
const os = require('os');
const path = require('path');
const slsw = require('serverless-webpack');
const webpack = require('webpack');
const {
lib: {
entries: entry,
webpack: { isLocal },
},
} = slsw;
const paths = {
context: __dirname,
babelrc: path.resolve(__dirname, '.babelrc'),
src: path.resolve(__dirname, 'src'),
node: path.resolve(__dirname, 'node_modules'),
webpackCache: path.resolve(__dirname, '.webpack'),
};
const happyThreadPool = HappyPack.ThreadPool({ size: os.cpus().length });
const babelConfig = JSON.parse(fs.readFileSync(paths.babelrc));
module.exports = {
entry,
target: 'node',
devtool: 'source-map',
mode: isLocal ? 'development' : 'production',
context: paths.context,
resolve: {
modules: [paths.src, 'node_modules'],
extensions: ['.js'],
symlinks: false,
},
externals: [nodeExternals()],
module: {
rules: [
{
test: /\.js$/,
enforce: 'pre',
use: 'happypack/loader?id=eslint',
include: paths.src,
exclude: /node_modules/,
},
{
test: /\.js$/,
use: 'happypack/loader?id=babel',
include: paths.src,
exclude: /node_modules/,
},
],
},
optimization: {
minimize: false,
removeAvailableModules: !isLocal,
removeEmptyChunks: !isLocal,
mergeDuplicateChunks: !isLocal,
},
output: {
libraryTarget: 'commonjs2',
path: paths.webpackCache,
filename: '[name].js',
sourceMapFilename: '[file].map',
},
plugins: [
new webpack.DefinePlugin({ 'global.GENTLY': false }),
new HappyPack({
id: 'eslint',
threadPool: happyThreadPool,
verbose: false,
loaders: [{ loader: 'eslint-loader' }],
}),
new HappyPack({
id: 'babel',
threadPool: happyThreadPool,
verbose: false,
loaders: [{ loader: 'babel-loader', options: babelConfig, include: paths.src }],
}),
new HardSourceWebpackPlugin({ environmentHash: { files: ['npm-shrinkwrap.json', '.env'] } }),
],
};