mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-02-14 19:05:48 +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'
|
||
|
}
|
||
|
}
|