-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
78 lines (73 loc) · 1.69 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
'use strict';
const isWsl = require('is-wsl');
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const src = path.join(__dirname, 'src')
/** @type {import('webpack').Configuration} */
module.exports= {
mode: 'production',
entry: path.join(__dirname, 'index.js'),
output: {
path: path.join(__dirname, 'dist'),
filename:'index.js',
library: {
root: 'csdn-crawler',
amd: 'csdn-crawler',
commonjs: 'csdn-crawler',
},
globalObject: 'this',
libraryTarget: 'umd',
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
parse: {
ecma: 8,
},
compress: {
ecma: 5,
warnings: false,
comparisons: false,
inline: 2,
},
mangle: {
safari10: true,
},
output: {
ecma: 5,
comments: false,
ascii_only: true,
},
},
parallel: !isWsl,
cache: true,
}),
],
},
resolve: {
extensions: [ '.js', '.json'],
},
module: {
rules: [
{ parser: { requireEnsure: false } },
{
test: /\.js$/,
include:path.resolve(__dirname, 'src'),
loader: 'babel-loader',
options: {
cacheDirectory: true,
cacheCompression: true,
compact: true
},
},
],
},
plugins: [
new CleanWebpackPlugin(),
new BundleAnalyzerPlugin({analyzerMode:'static'}),
]
};