-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.cjs
54 lines (53 loc) · 1.38 KB
/
webpack.config.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
43
44
45
46
47
48
49
50
51
52
53
54
var path = require("path");
module.exports = {
mode: "production",
entry: "./src/nav2d.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "nav2d.min.js",
library: "nav2d",
libraryTarget: "umd",
globalObject: `(typeof self !== 'undefined' ? self : this)`,
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"],
},
},
},
],
},
externals: {
uuid: {
root: "uuid",
amd: "uuid",
commonjs2: "uuid",
commonjs: "uuid",
},
"point-in-polygon": {
root: "point-in-polygon",
amd: "point-in-polygon",
commonjs2: "point-in-polygon",
commonjs: "point-in-polygon",
},
earcut: {
root: "earcut",
amd: "earcut",
commonjs2: "earcut",
commonjs: "earcut",
},
"simple-quadtree": {
root: "simple-quadtree",
amd: "simple-quadtree",
commonjs2: "simple-quadtree",
commonjs: "simple-quadtree",
},
},
devtool: "source-map",
};