-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
99 lines (94 loc) · 3.44 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// @ts-check
// see https://webpack.js.org/guides/typescript/
// see https://sysgears.github.io/mochapack/docs/installation/webpack-configuration.html
const path = require('path');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = (env, argv) => {
/** @type { import('webpack').Configuration } */
const config = {
mode: (env.prod) ? "production" : "development",
entry: [path.join(__dirname, 'src/index.tsx')],
output: {
filename: '[name]-[contenthash].bundle.js',
path: path.join(__dirname, 'dist'),
clean: true,
},
devtool: (env.prod) ? 'source-map' : 'inline-source-map', // inline-source-map makes debugging work better.
target: (env.test) ? "node" : "web",
plugins: [
new MiniCssExtractPlugin(),
new MiniCssExtractPlugin(),
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.join(__dirname, "src/index.html.ejs"),
}),
],
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.svg/,
type: 'asset/resource',
use: [
{
loader: 'svgo-loader',
options: { configFile: path.join(__dirname, "svgo.config.js") }
}
],
generator: {filename: "[name]-[hash][ext][query]"},
include: path.join(__dirname, "assets"),
},
{
test: /\.css$/i,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
modules: {
auto: /\.m\.css$/i,
localIdentName: env.prod ? '[hash:base64:16]' : '[name]-[local]-[hash:base64:5]',
}
}
}
],
},
{
test: /assets\/.*\.json$/,
type: 'asset/resource',
generator: {filename: 'examples/[name]-[hash][ext][query]'},
},
{
test: /\.ne$/,
use: ['nearley-loader'],
include: path.join(__dirname, "src"),
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
modules: [path.join(__dirname, 'src'), 'node_modules'],
alias: {
assets: path.join(__dirname, 'assets'),
css: path.join(__dirname, 'css'),
},
},
optimization: {
minimize: !!env.prod, // Debugger has trouble if you minify, even with the source map.
minimizer: [
"...",
new CssMinimizerPlugin(),
]
},
devServer: {
static: path.join(__dirname, 'dist'),
},
};
return config;
}