I\'m using the Closure compiler to create a Chrome extension and I\'d like to get source maps to work for debugging. I can get source maps to work just fine by pointing the
I had the same problem and after switching to inline source maps, everything worked fine.
The reason is, that chrome extension only support inline source mpas
so, when you use webpack, just add
devtool: "inline-source-map"