-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.ts
83 lines (81 loc) · 1.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import * as path from "path";
import { CleanWebpackPlugin } from "clean-webpack-plugin";
import HtmlWebpackPlugin from "html-webpack-plugin";
import MiniCssExtractPlugin from "mini-css-extract-plugin";
import CssMinimizerPlugin from "css-minimizer-webpack-plugin";
import TerserPlugin from "terser-webpack-plugin";
import ESLintPlugin from "eslint-webpack-plugin";
const cfg = {
mode: process.env.NODE_ENV || "development",
entry: "./src/index.tsx",
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: "./src/index.html",
}),
new MiniCssExtractPlugin({}),
new ESLintPlugin(),
],
output: {
filename: "[name].[contenthash].js",
path: path.resolve(__dirname, "dist"),
},
module: {
rules: [
{
test: /\.((sa|sc)ss)$/i,
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
options: {
importLoaders: 2,
},
},
"postcss-loader",
"sass-loader",
],
},
{
test: /\.css$/i,
use: [
// Minifies CSS
MiniCssExtractPlugin.loader,
// Translates CSS into CommonJS
"css-loader",
],
},
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: "file-loader",
},
],
},
{
test: /\.tsx?$/,
loader: "ts-loader",
},
],
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: [".ts", ".tsx", ".js"],
alias: {
"react": "preact/compat",
"react-dom": "preact/compat",
},
},
devtool: "source-map",
devServer: {
static: path.join(__dirname, "dist"),
compress: true,
port: 8080,
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin(), new CssMinimizerPlugin()],
},
};
module.exports = cfg;