Created
June 25, 2019 07:42
-
-
Save jvik/877c2bd95f02d74dab7f6b3478dd4767 to your computer and use it in GitHub Desktop.
Problem with webpack-hot-middleware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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