forked from creativelifeform/three-nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
36 lines (35 loc) · 867 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
const path = require('path');
const ESLintPlugin = require('eslint-webpack-plugin');
const bundleAnalyzer = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
mode: process.env.NODE_ENV || 'production',
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'),
filename: 'three-nebula.js',
library: 'Nebula',
libraryTarget: 'umd',
globalObject: 'this',
},
devtool: 'source-map',
module: {
rules: [
{
test: /(\.jsx|\.js)$/,
loader: 'babel-loader',
exclude: /(node_modules)/,
},
],
},
resolve: {
modules: [path.resolve('./src'), path.resolve('./node_modules')],
extensions: ['.json', '.js'],
},
plugins: [
new bundleAnalyzer({
analyzerMode: 'disabled',
generateStatsFile: true,
}),
new ESLintPlugin(),
],
};