-
Notifications
You must be signed in to change notification settings - Fork 161
/
webpack.config.ts
68 lines (60 loc) · 1.53 KB
/
webpack.config.ts
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
import path from "path";
import webpack from "webpack";
import _ from "lodash";
// @ts-expect-error
import { CheckEsVersionPlugin } from "@bitjourney/check-es-version-webpack-plugin";
const config = {
mode: "production",
entry: "./src/index.ts",
target: ["web", "es5"],
output: {
path: path.resolve(__dirname, "dist.es5+umd"),
library: "MessagePack",
libraryTarget: "umd",
globalObject: "this",
filename: undefined as string | undefined,
},
resolve: {
extensions: [".ts", ".tsx", ".mjs", ".js", ".json", ".wasm"],
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
configFile: "tsconfig.dist.webpack.json",
},
},
],
},
plugins: [
new CheckEsVersionPlugin({
esVersion: 5, // for IE11 support
}),
new webpack.DefinePlugin({
"process.env.TEXT_ENCODING": "undefined",
"process.env.TEXT_DECODER": "undefined",
}),
],
optimization: {
minimize: undefined as boolean | undefined,
},
// We don't need NodeJS stuff on browsers!
// https://webpack.js.org/configuration/node/
node: false,
devtool: "source-map",
};
// eslint-disable-next-line import/no-default-export
export default [
((config) => {
config.output.filename = "msgpack.min.js";
config.optimization.minimize = true;
return config;
})(_.cloneDeep(config)),
((config) => {
config.output.filename = "msgpack.js";
config.optimization.minimize = false;
return config;
})(_.cloneDeep(config)),
];