-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
183 lines (163 loc) · 4.78 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// import { pipe, over, lensPath, append } from "ramda";
import path from "path";
import util from "util";
import { any, pickBy, mapObjIndexed } from "ramda";
import { merge } from "webpack-merge";
// import MiniCssExtractPlugin from "mini-css-extract-plugin";
import pkg from "./package.json";
// import { Configuration } from "webpack-dev-server";
import { BundleAnalyzerPlugin } from "webpack-bundle-analyzer";
import * as webpack from "webpack";
// import * as webpackDevServer from "webpack-dev-server";
import CopyWebpackPlugin from "copy-webpack-plugin";
import CaseSensitivePathsPlugin from "case-sensitive-paths-webpack-plugin";
import WatchMissingNodeModulesPlugin from "react-dev-utils/WatchMissingNodeModulesPlugin";
import HtmlWebpackPlugin from "html-webpack-plugin";
import { CleanWebpackPlugin } from "clean-webpack-plugin";
const hasPrefix = (prefixes: string[], value: string): boolean => {
return any((p) => value.startsWith(p), prefixes);
};
const getEnvironmentVariables = (
env: NodeJS.ProcessEnv,
prefix: string[],
whitelisted: string[]
): { [key: string]: string } => {
// console.log(env, "env");
const picked = pickBy(
(v, k) =>
k === "NODE_ENV" || whitelisted.includes(v) || hasPrefix(prefix, k),
env
);
return mapObjIndexed((v) => {
return JSON.stringify(v);
}, picked);
};
const getBundleAnalyzer = (mode: string) => {
const options: BundleAnalyzerPlugin.Options =
mode === "development"
? {}
: {
analyzerMode: "disabled",
generateStatsFile: true,
statsFilename: "stats.json",
};
const p = new BundleAnalyzerPlugin(options);
return p;
};
const mode =
process.env.NODE_ENV === "development" ? "development" : "production";
const c: webpack.Configuration = {
mode,
optimization: {
splitChunks: {
chunks: "all",
},
},
devtool: false,
output: {
path: path.resolve("dist"),
publicPath: "/",
},
devServer: {
port: 11000,
hot: true,
index: "index.html",
disableHostCheck: true,
historyApiFallback: true,
},
resolve: {
modules: [path.resolve("node_modules")],
extensions: [".js", ".ts", ".jsx", ".tsx", ".mjs"],
},
context: path.resolve("src"),
entry: { client: "./client.tsx" },
plugins: [
new webpack.DefinePlugin({
__DEVELOPMENT__: mode === "development",
__PRODUCTION__: mode === "production",
"process.env": getEnvironmentVariables(process.env, ["REACT_APP_"], []),
}),
new CopyWebpackPlugin({
patterns: [{ from: "assets/web", flatten: false }],
}),
new CaseSensitivePathsPlugin(),
new WatchMissingNodeModulesPlugin(path.resolve("node_modules")),
new HtmlWebpackPlugin({
template: "assets/index.html",
favicon: "assets/index.html",
chunksSortMode: "auto",
title: "MHM 2000",
}),
getBundleAnalyzer(mode),
],
module: {
rules: [
{
test: /\.(png|jpg|gif|ico|svg)$/,
include: [path.resolve("src")],
use: [
{
loader: "file-loader",
options: { name: "[path][name]-[hash].[ext]", emitFile: true },
},
{
loader: "image-webpack-loader",
options: { disabled: mode !== "production" },
},
],
},
{
test: /\.(js|jsx|ts|tsx)$/,
use: [
{
loader: "babel-loader",
options: {
babelrc: false,
presets: [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
debug: true,
useBuiltIns: "usage",
targets: {
browsers: pkg.browserslist[mode],
},
modules: false,
corejs: 3,
},
],
["@babel/preset-react", { development: true }],
"@emotion/babel-preset-css-prop",
],
plugins: [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-optional-chaining",
],
cacheDirectory: true,
},
},
],
exclude: [path.resolve("node_modules")],
},
{
test: /\.mjs$/,
include: /node_modules/,
type: "javascript/auto",
},
],
},
};
const p: webpack.Configuration = {
output: {
filename: "[name].[contenthash].js",
},
plugins: [new CleanWebpackPlugin()],
};
const f = mode === "production" ? merge(c, p) : c;
console.log(util.inspect(f, false, 999));
export default f;
// process.exit();
// export default withBundleAnalyzer;