diff --git a/node/webpack.config.js b/node/webpack.config.js index 90dfabdd..53f5782e 100644 --- a/node/webpack.config.js +++ b/node/webpack.config.js @@ -1,25 +1,25 @@ module.exports = { entry: { - 'encryptTransaction': './encryptTransaction.js' + "encryptTransaction": "./encryptTransaction.js" }, output: { path: __dirname, - filename: '[name].min.js', - library: 'encryptTransaction' + filename: "[name].min.js", + library: "encryptTransaction" }, module: { rules: [ { exclude: /node_modules/, use: { - loader: 'babel-loader' + loader: "babel-loader" } } ] }, node: { - fs: 'empty', - child_process: 'empty' + fs: "empty", + child_process: "empty" }, performance: { hints: false } }; \ No newline at end of file