-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.mjs
106 lines (97 loc) · 2.33 KB
/
webpack.config.mjs
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
import path from "path";
import { fileURLToPath } from "url";
import HtmlWebpackPlugin from "html-webpack-plugin";
import { CleanWebpackPlugin } from "clean-webpack-plugin";
import InlinePlugin from "./inline-plugin.mjs";
import iconsPlugin from "./icons-plugin.mjs";
import autoprefixer from "autoprefixer";
import postcssNormalize from "postcss-normalize";
import postcssReporter from "postcss-reporter";
// https://bobbyhadz.com/blog/javascript-dirname-is-not-defined-in-es-module-scope
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const base = {
entry: "./src/index.ts",
devtool: "source-map",
output: {
filename: "bundle.[contenthash].js",
path: path.resolve(__dirname, "dist"),
},
resolve: {
extensions: [".ts", ".tsx", ".js"],
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
use: ["babel-loader", "ts-loader"],
},
{
test: /\.scss$/,
exclude: /node_modules/,
use: [
"raw-loader",
{
loader: "postcss-loader",
options: {
sourceMap: true,
postcssOptions: {
plugins: [
autoprefixer(),
iconsPlugin(),
postcssNormalize(),
postcssReporter(),
],
},
},
},
{
loader: "sass-loader",
options: {
sourceMap: true,
},
},
],
},
],
},
infrastructureLogging: {
appendOnly: true,
level: "verbose",
debug: true,
},
};
export default (env) => {
let config = {
mode: "development",
...base,
plugins: [new HtmlWebpackPlugin({ title: "qualitycheck" })],
devServer: {
compress: true,
static: path.resolve(__dirname, "public"),
},
};
if (env.WEBPACK_BUILD) {
config = {
mode: "production",
...base,
plugins: [
new HtmlWebpackPlugin({
title: "qualitycheck",
inject: "body",
}),
new InlinePlugin(),
new CleanWebpackPlugin(),
],
optimization: {
usedExports: true,
splitChunks: {
name: false,
},
concatenateModules: true,
},
};
}
return config;
};