Problem is that debugger not only stepping into the right source files but also its stepping into app.js file which is autogenerated by Webpack. How can I prevent it from doing that ?
I have following setup:
I initiated Vue.js 2 app using vue-cli. My debugging configuration looks like this:
I also added this line to "webpack.dev.conf.js"; devtool: "source-map",
And I also added app.js file to exceptions in the debugger config:
I start server using npm run dev command, and then starting debugging session from WebStorm. Problem still exists. Any ideas ?

