const nodeExternals = require('webpack-node-externals'); module.exports = function(options, webpack) { return { ...options, entry: ['webpack/hot/poll?100', options.entry], externals: [ nodeExternals({ allowlist: ['webpack/hot/poll?100'], }), ], plugins: [ ...options.plugins, new webpack.WatchIgnorePlugin({ paths: [/\.js$/, /\.d\.ts$/], }), new webpack.HotModuleReplacementPlugin(), ], }; };