Set up webpack library backed by zcash-client-backend-wasm

This commit is contained in:
Jack Grigg
2019-06-11 00:15:22 +01:00
parent f53de917c5
commit 110a611ffe
4 changed files with 3560 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
var path = require('path')
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'zcash-client-sdk.js',
library: 'zcashClientSdk'
}
}