From 984a381689fc014b9a50907ef793a5b7dd3f7e8d Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Fri, 21 Jan 2022 09:14:41 -0800 Subject: [PATCH] Add source maps to modern browsers dist --- webpack.config.modern.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.modern.js b/webpack.config.modern.js index fa7bb15e..23436841 100644 --- a/webpack.config.modern.js +++ b/webpack.config.modern.js @@ -32,6 +32,7 @@ module.exports = { mode: "production", entry: './src/lib/index.modern.ts', target: 'es5', + devtool: 'source-map', output: { filename: 'index.modern.js', path: path.resolve(__dirname, 'build'),