-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.prod.js
113 lines (83 loc) · 2.08 KB
/
webpack.config.prod.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/**
* Bundle configuration.
*
* @module @xcmats/webpack-backend-config
* @license BSD-2-Clause
* @copyright Mat. 2019-present
*/
"use strict";
// ...
const
webpack = require("webpack"),
{ realpathSync } = require("fs"),
{ resolve } = require("path"),
MinifyPlugin = require("terser-webpack-plugin"),
ESLintPlugin = require("eslint-webpack-plugin"),
nodeExternals = require("webpack-node-externals"),
appName = require("./package.json").name,
appDirectory = realpathSync(process.cwd());
// ...
module.exports = {
mode: "production",
target: "node",
resolve: {
extensions: [".ts", ".js"],
},
externals: [nodeExternals({
allowlist: [
/@xcmats\/js-toolbox(\/.*)?/,
],
})],
entry: {
[appName.split("/")[1]]: resolve(appDirectory, "src/index.js"),
},
output: {
chunkFilename: "[name].c.js",
filename: "[name].js",
globalObject: "this",
libraryTarget: "commonjs",
path: resolve(__dirname, "./dist"),
},
optimization: {
concatenateModules: true,
mergeDuplicateChunks: true,
minimize: true,
minimizer: [
new MinifyPlugin({
terserOptions: {
output: {
comments: false,
},
},
extractComments: false,
}),
],
chunkIds: "total-size",
moduleIds: "size",
providedExports: true,
removeAvailableModules: true,
removeEmptyChunks: true,
sideEffects: true,
},
module: {
rules: [
{
test: /\.(js|ts)$/,
loader: "babel-loader",
sideEffects: false,
},
],
},
node: {
__dirname: false,
__filename: false,
},
plugins: [
new webpack.DefinePlugin({
"process.env.BABEL_ENV": JSON.stringify("production"),
}),
new ESLintPlugin({
context: "src",
}),
],
};