Sith/webpack.config.js

110 lines
2.7 KiB
JavaScript
Raw Normal View History

2024-10-07 23:33:21 +00:00
const glob = require("glob");
2024-10-08 15:14:22 +00:00
// biome-ignore lint/correctness/noNodejsModules: this is backend side
2024-10-07 23:33:21 +00:00
const path = require("node:path");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
module.exports = {
entry: glob
.sync("./!(static)/static/webpack/**/*?(-)index.[j|t]s?(x)")
.reduce((obj, el) => {
// We include the path inside the webpack folder in the name
const relativePath = [];
const fullPath = path.parse(el);
for (const dir of fullPath.dir.split("/").reverse()) {
if (dir === "webpack") {
break;
}
relativePath.push(dir);
}
relativePath.push(fullPath.name);
obj[relativePath.join("/")] = `./${el}`;
return obj;
}, {}),
cache: {
2024-10-10 13:42:11 +00:00
type: "filesystem", // This reduces typescript compilation time like crazy when you restart the server
},
2024-10-08 11:54:44 +00:00
output: {
filename: "[name].js",
path: path.resolve(__dirname, "./staticfiles/generated/webpack"),
clean: true,
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
},
2024-10-08 11:54:44 +00:00
plugins: [new MiniCssExtractPlugin()],
optimization: {
minimizer: [
"...",
new CssMinimizerPlugin({
parallel: true,
}),
new TerserPlugin({
parallel: true,
terserOptions: {
mangle: true,
compress: {
2024-10-08 15:14:22 +00:00
// biome-ignore lint/style/useNamingConvention: this is how the underlying library wants it
2024-10-08 11:54:44 +00:00
drop_console: true,
},
},
}),
],
},
module: {
rules: [
{
test: /\.css$/,
sideEffects: true,
use: [MiniCssExtractPlugin.loader, "css-loader"],
},
{
test: /\.(jpe?g|png|gif)$/i,
type: "asset/resource",
},
{
test: /\.m?js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"],
cacheDirectory: true,
2024-10-08 11:54:44 +00:00
},
},
},
{
test: /\.js$/,
enforce: "pre",
use: ["source-map-loader"],
},
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
2024-10-08 11:54:44 +00:00
{
test: require.resolve("jquery"),
loader: "expose-loader",
options: {
exposes: [
{
globalName: ["$"],
override: true,
},
{
globalName: ["jQuery"],
override: true,
},
{
globalName: ["window.jQuery"],
override: true,
},
],
},
},
],
},
2024-10-07 23:33:21 +00:00
};