I have a very simple hello world ES5 application https://github.com/rohans84/webpack-demo where I am trying to get some basic webpack 2 development.
After enabling sourcemaps for my webpack-dev-server build, I can see sourcemaps in Chrome DevTools under webpack:// section for my underlying code. However, the breakpoints I set there do not seem to work.
Is there additional configuration required to enable debugging and honoring of breakpoints? What is the point of sourcemaps if you cannot set breakpoints of your underlying code?
There is an open issue at the moment. Best you can do is to break and get the correct line in the sourcemap, but stepping through will not work on Chrome and FF, AFAIK.