Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Last active August 29, 2020 09:42
Embed
What would you like to do?
devtool: "eval-source-map",
module: {
rules: [
{
enforce: "pre",
test: /\.js$/,
exclude: /node_modules/,
loader: "source-map-loader"
},
{
test: /\.(t|j)sx?$/,
exclude: /node_modules/,
use: {
loader: 'ts-loader'
}
},
],
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment