-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
executable file
·49 lines (48 loc) · 1.33 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
const path = require('path');
const findImports = require('find-imports');
const webpack = require('webpack');
const pkg = require('./package.json');
const babelConfig = require('./babel.config');
module.exports = {
mode: 'development',
devtool: 'source-map',
entry: {
[pkg.name]: path.resolve(__dirname, 'src/index.js')
},
output: {
path: path.join(__dirname, 'lib'),
filename: 'index.js',
libraryTarget: 'commonjs2'
},
externals: []
.concat(findImports(['src/**/*.{js,jsx}'], { flatten: true }))
.concat(Object.keys(pkg.peerDependencies))
.concat(Object.keys(pkg.dependencies)),
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/
},
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
options: babelConfig
},
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
// This has effect on the react lib size
NODE_ENV: JSON.stringify('production')
}
}),
],
resolve: {
extensions: ['.js', '.json', '.jsx']
}
};