Skip to content

Instantly share code, notes, and snippets.

@jvik
Created June 25, 2019 07:42
Show Gist options
  • Save jvik/877c2bd95f02d74dab7f6b3478dd4767 to your computer and use it in GitHub Desktop.
Save jvik/877c2bd95f02d74dab7f6b3478dd4767 to your computer and use it in GitHub Desktop.
Problem with webpack-hot-middleware
var fs = require('fs');
var webpack = require('webpack');
var nodeModules = {};
fs.readdirSync('node_modules')
.filter(function(x) {
return ['.bin'].indexOf(x) === -1;
})
.forEach(function(mod) {
nodeModules[mod] = 'commonjs ' + mod;
});
module.exports = {
mode: 'development',
entry: ['./src/app.ts', 'webpack-hot-middleware/client'],
context: __dirname,
output: {
path: __dirname + './dist',
filename: 'app.js',
publicPath: '/',
},
resolve: {
// Add '.ts' and '.tsx' as a resolvable extension.
extensions: ['.ts', '.tsx', '.js'],
},
module: {
rules: [
// All files with a '.ts' or '.tsx'
// extension will be handled by 'ts-loader'
{
test: /\.tsx?$/,
loader: 'awesome-typescript-loader',
},
],
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
],
target: 'node',
externals: nodeModules,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment