mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-02-12 02:05:47 +00:00
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
var path = require('path')
|
|
|
|
module.exports = {
|
|
entry: './src/index.js',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'zcash-client-sdk.js',
|
|
library: 'zcashClientSdk'
|
|
}
|
|
}
|