We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd2a7d commit 067ebf4Copy full SHA for 067ebf4
webpack/bitgojs.config.js
@@ -14,8 +14,13 @@ module.exports = {
14
'@hashgraph/sdk': path.resolve('../../node_modules/@hashgraph/sdk/src/browser.js'),
15
// use the default version here since we're webpacking ourselves
16
'@bitgo/sdk-api': path.resolve('../sdk-api/dist/src/index.js'),
17
+ // Use ESM build for wasm-utxo (modern ESM-first package)
18
+ '@bitgo/wasm-utxo': path.resolve('../../node_modules/@bitgo/wasm-utxo/dist/esm/index.js'),
19
async: path.resolve('../../node_modules/async/index.js'),
20
},
21
+ extensionAlias: {
22
+ '.js': ['.js', '.ts'],
23
+ },
24
fallback: {
25
constants: false,
26
crypto: require.resolve('crypto-browserify'),
0 commit comments