A simple way to enable source-map support for your backend Webpack built applications:
Require it in your webpack.config.js
var WebpackSourceMapSupport = require("webpack-source-map-support");
Then just add it as a plugin:
plugins: [
new WebpackSourceMapSupport(),
// ... other plugins
]