mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
|
module.exports = {
|
||
|
context: __dirname + '/src',
|
||
|
entry: './index.js',
|
||
|
output: {
|
||
|
path: 'dist',
|
||
|
filename: 'crypto-pro.js',
|
||
|
library: 'CryptoPro'
|
||
|
},
|
||
|
devtool: 'source-map',
|
||
|
watch: true
|
||
|
};
|