UNPKG

267 BJavaScriptView Raw
1const path = require("path");
2
3module.exports = {
4 mode: "production",
5 entry: "./src/index.js",
6 output: {
7 filename: "geohex.min.js",
8 path: path.resolve(__dirname, "lib"),
9 library: "Geohex",
10 libraryTarget: "umd",
11 globalObject: "this",
12 },
13};