-
Notifications
You must be signed in to change notification settings - Fork 12
/
webpack.config.ts
47 lines (45 loc) · 965 Bytes
/
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
/* eslint-disable import/no-extraneous-dependencies */
import webpack from "webpack";
import TerserPlugin from "terser-webpack-plugin";
import path from "path";
const config: webpack.Configuration = {
entry: "./src/index.ts",
mode: "production",
module: {
rules: [
{
test: /\.ts$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.min.js",
library: "typhonjs",
},
target: "web",
resolve: {
symlinks: false,
fallback: {
buffer: require.resolve("buffer"),
stream: require.resolve("stream-browserify"),
},
extensions: [".ts", ".js"],
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
extractComments: false,
terserOptions: {
format: {
comments: false,
},
},
}),
],
},
};
export default config;