blob: f7f9107c307436c374e39d74cea45815dc2b2b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
const path = require("path");
module.exports = [{
mode: "production",
entry: `./node_modules/micromatch/index.js`,
optimization: {
minimize: false
},
output: {
path: __dirname,
filename: `micromatch.js`,
library: "micromatch",
libraryTarget: "commonjs"
},
node: {
util: true,
path: true
}
}];
|