crypto-pro-js/webpack.config.js
2017-01-17 13:22:49 +03:00

11 lines
229 B
JavaScript
Executable File

module.exports = {
context: __dirname + '/src',
entry: './index.js',
output: {
path: 'dist',
filename: 'crypto-pro.js',
library: 'CryptoPro'
},
devtool: 'source-map',
watch: true
};