When you uglify your Angular code with Webpack's uglify plugin, debugging your application can be a nightmare. See how easy it is to add source maps to your bundle so you can easily debug even in production.
Just a brilliant series. Thanks Kent.
Thanks Paul!
Hi Kent!
How do you use map-sources with unit testing? Thanks!
Set devtool
when you're in test mode (I recommend eval
)
what are the differences between the options available? Is there any place that explains properly those options? The official documentation (https://webpack.github.io/docs/configuration.html) is not easy to understand. Different info I found on the internet, looks like people just chose randomly the options. Some of them simply do not work. I tried some options and the result mapping is completely wrong. The source shown do not match with the correct one.
Thanks
These are the available options. I agree that it's not 100% clear how things work. I recommend that in development you use eval
and in production you use source-map
:)