-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
109 lines (106 loc) · 2.9 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
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
import * as path from "path";
import * as HtmlWebpackPlugin from "html-webpack-plugin";
import * as CopyPlugin from "copy-webpack-plugin";
import * as MiniCssExtractPlugin from "mini-css-extract-plugin";
import * as ReactRefreshWebpackPlugin from "@pmmmwh/react-refresh-webpack-plugin";
const HtmlInlineScriptPlugin = require("html-inline-script-webpack-plugin");
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const DEV_MODE = process.env.NODE_ENV === "development";
const SRC_DIR = path.resolve(__dirname, "src");
const PUBLIC_DIR = path.resolve(__dirname, "public");
const RELEASE_DIR = path.resolve(__dirname, "release");
const config = {
mode: DEV_MODE ? "development" : "production",
target: DEV_MODE ? "web" : "browserslist",
stats: "minimal",
devtool: DEV_MODE ? "eval-cheap-module-source-map" : "source-map",
entry: path.join(SRC_DIR, "index.tsx"),
devServer: {
historyApiFallback: true,
hot: true,
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
{
loader: "babel-loader",
options: {
presets: ["@babel/preset-typescript", "@babel/preset-react"],
plugins: [
"babel-plugin-macros",
[
"babel-plugin-styled-components",
{
ssr: !DEV_MODE,
fileName: false,
displayName: DEV_MODE,
minify: !DEV_MODE,
pure: !DEV_MODE,
},
],
...(DEV_MODE ? ["react-refresh/babel"] : []),
],
},
},
],
},
{
test: /\.css$/,
exclude: /node_modules/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: "css-loader",
options: {
sourceMap: DEV_MODE,
},
},
],
},
],
},
plugins: [
new ForkTsCheckerWebpackPlugin(),
new HtmlWebpackPlugin({
template: path.join(PUBLIC_DIR, "index.html"),
filename: "index.html",
inject: "body",
}),
new CopyPlugin({
patterns: [
{
from: PUBLIC_DIR,
to: RELEASE_DIR,
globOptions: {
ignore: [path.join(PUBLIC_DIR, "index.html")],
},
},
],
}),
new MiniCssExtractPlugin({
filename: "[name].[contenthash:8].css",
}),
new ReactRefreshWebpackPlugin(),
],
resolve: {
extensions: [".tsx", ".ts", ".js"],
},
output: {
filename: "[name].[contenthash:8].js",
chunkFilename: "[name].[contenthash:8].chunk.js",
path: RELEASE_DIR,
clean: true,
publicPath: "",
},
};
export default () => {
if (!DEV_MODE) {
config.plugins.push(new HtmlInlineScriptPlugin([/main.+[.]js$/]));
}
return config;
};