generated from trim21/webpack-userscript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.base.cjs
42 lines (39 loc) · 907 Bytes
/
webpack.config.base.cjs
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
const path = require("path");
const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");
const webpackConfig = {
resolve: {
extensions: [".js", ".ts"],
},
optimization: {
minimize: false,
moduleIds: "named",
},
entry: "./src/index.ts",
output: {
path: path.resolve(__dirname, "../dist"),
},
target: "web",
externals: {
"@pkmn/sets": "window", // rename "@pkmn/sets" as "window" to access `window.PokemonTeams`
},
module: {
rules: [
{
test: /\.([tj])s$/,
use: {
loader: "swc-loader",
},
},
{
test: /\.less$/,
use: ["style-loader", "css-loader", "less-loader"],
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
},
],
},
plugins: process.env.npm_config_report ? [new BundleAnalyzerPlugin()] : [],
};
module.exports = webpackConfig;