npm i webpack-babel-plugin -D
Add the plugin to the list of plugins,like so:
import BabelPlugin from 'webpack-babel-plugin'
plugins: [
new BabelPlugin({
test: /\.js$/,
babelOptions: {
compact: false,
sourceMap: false
}
})
]
See the babel options.