-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
132 lines (128 loc) · 3.72 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import * as dotenv from "dotenv";
import * as path from "path";
import * as webpack from "webpack";
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 WatchExternalFilesPlugin = require("webpack-watch-files-plugin").default;
const HtmlInlineScriptPlugin = require("html-inline-script-webpack-plugin");
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const TsconfigPathsPlugin = require("tsconfig-paths-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 BUILD_DIR = path.resolve(__dirname, "build");
const PUBLIC_PATH = process.env.PUBLIC_PATH ?? "./";
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: {
cacheCompression: false,
cacheDirectory: true,
presets: [
"@babel/preset-typescript",
"@babel/preset-react",
"@babel/preset-env",
],
plugins: [
"@babel/plugin-transform-runtime",
"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 WatchExternalFilesPlugin({
files: [path.resolve(__dirname, "..", "server", "src", "**", "*")],
}),
// Add ENV_VARS here to make them available inside the app
new webpack.DefinePlugin({
"process.env": JSON.stringify(dotenv.config().parsed),
}),
new ForkTsCheckerWebpackPlugin(),
new HtmlWebpackPlugin({
template: path.join(PUBLIC_DIR, "index.html"),
filename: "index.html",
inject: "body",
}),
new CopyPlugin({
patterns: [
{
from: PUBLIC_DIR,
to: BUILD_DIR,
globOptions: {
ignore: [path.join(PUBLIC_DIR, "index.html")],
},
},
],
}),
new MiniCssExtractPlugin({
filename: "[name].[contenthash:8].css",
}),
new ReactRefreshWebpackPlugin(),
],
resolve: {
plugins: [new TsconfigPathsPlugin({})],
extensions: [".tsx", ".ts", ".js"],
},
output: {
filename: "[name].[contenthash:8].js",
chunkFilename: "[name].[contenthash:8].chunk.js",
path: BUILD_DIR,
clean: true,
},
};
export default () => {
// Production config
if (!DEV_MODE) {
config.plugins.push(
new HtmlInlineScriptPlugin({ scriptMatchPattern: [/main.+[.]js$/] })
);
}
return config;
};