-
Notifications
You must be signed in to change notification settings - Fork 56
/
webpack.config.js
38 lines (36 loc) · 907 Bytes
/
webpack.config.js
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
const path = require("path");
const webpack = require("webpack");
const manager = {
mode: "production",
entry: "./src/opencv-worker.ts",
resolve: {
extensions: [".ts", ".js"],
fallback: {
crypto: false,
path: false,
fs: false,
buffer: require.resolve("buffer/"),
},
},
module: {
rules: [
{ test: [/\.ts$/], loader: "ts-loader" },
{ test: /\.wasm$/, type: "asset/inline" },
],
},
output: {
filename: "opencv-worker.js",
path: path.resolve(__dirname, "dist"),
libraryTarget: "umd",
globalObject: "typeof self !== 'undefined' ? self : this",
},
stats: {
children: true,
},
plugins: [
new webpack.ProvidePlugin({
Buffer: ["buffer", "Buffer"],
}),
],
};
module.exports = [manager];