const TerserPlugin = require('terser-webpack-plugin');
module.exports = {
mode: 'production',
entry: './index.js',
target: 'node',
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
format: {
comments: false,
},
extractComments: false,
}),
],
};