Open pavel06081991 opened 7 years ago
+1 on this, it is screwing up any ability to set breakpoints and debug
Are there any updates on this issue?
I have the same kind of issues except that I barely see any source maps at all once I activate the babili plugin... Is it possible that there is an incompatibility between the Babili plugin and ExtractTextPlugin, or handlebars-loader ?
I used devtool: 'source-map' in webpack config and did not use babili-webpack-plugin. Here are some code of my source file:
All worked great, I could set breakpoint to line:
var b = 1024;
and to lineconsole.log(10)
Also I could see the value of "b" variable during debugging.But after I added babili-webpack-plugin I can not see the value of "b" variable. Also now I can set breakpoint only to line:
console.log(10)
and can not set breakpoint to line:var b = 1024;
Is it an issue or maybe I do something wrong? Here is part of my webpack.config.js