Skip to content

Commit

Permalink
SKALE-4510 fix codacy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
olehnikolaiev committed Oct 13, 2021
1 parent 154f192 commit 15bc88e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions node/webpack.config.js
Original file line number Diff line number Diff line change
@@ -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 }
};

0 comments on commit 15bc88e

Please sign in to comment.