-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathwebpack.config.base.cjs
More file actions
42 lines (39 loc) · 825 Bytes
/
webpack.config.base.cjs
File metadata and controls
42 lines (39 loc) · 825 Bytes
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: {
jquery: "$",
},
module: {
rules: [
{
test: /\.m?ts$/,
use: {
loader: "ts-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;