forked from digitalSloth/znn-typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.browser.config.cjs
More file actions
107 lines (103 loc) · 2.48 KB
/
Copy pathwebpack.browser.config.cjs
File metadata and controls
107 lines (103 loc) · 2.48 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
const path = require("path");
const webpack = require("webpack");
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const commonConfig = {
entry: "./src/index.ts",
mode: "production",
target: "web",
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/
},
{
test: /\.wasm$/,
loader: "base64-loader",
type: "javascript/auto"
}
]
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
alias: {
"argon2": false
},
fallback: {
"fs": false,
"path": false,
"url": false,
"crypto": require.resolve("crypto-browserify")
},
extensionAlias: {
".js": [".ts", ".js"]
},
fullySpecified: false
},
plugins: [
new NodePolyfillPlugin({
excludeAliases: ["console"]
}),
new webpack.ProvidePlugin({
Buffer: ["buffer", "Buffer"],
process: "process/browser"
}),
new CopyWebpackPlugin({
patterns: [
{
from: "lib/pow.wasm",
to: "pow.wasm",
noErrorOnMissing: true
},
{
from: "lib/pow.js",
to: "pow.js",
noErrorOnMissing: true
}
]
})
]
};
const umdConfig = {
...commonConfig,
output: {
filename: "bundle.browser.js",
path: path.resolve(__dirname, "dist/browser"),
library: {
type: "umd",
name: "ZnnSDK"
},
globalObject: "this",
environment: {
dynamicImport: false
}
},
optimization: {
splitChunks: false,
runtimeChunk: false
}
};
const esmConfig = {
...commonConfig,
experiments: {
outputModule: true
},
output: {
filename: "bundle.browser.mjs",
path: path.resolve(__dirname, "dist/browser"),
library: {
type: "module"
},
environment: {
dynamicImport: false,
module: true
}
},
optimization: {
splitChunks: false,
runtimeChunk: false
}
};
module.exports = [umdConfig, esmConfig];