How do I set up VS Code to debug JS running under asp.net MVC
问题 I'm using the System.Web.Optimization default bundler - running with optimizations disabled locally, and trying to get VS Code debugger hooked into chrome. VS Code is talking to chrome OK (I can see console output in VS code), but I'm getting breakpoint ignored because target path not found when trying to add a breakpoint { "type": "chrome", "request": "launch", "name": "Launch Chrome against localhost", "url": "http://localhost:54330", "webRoot": "${workspaceFolder}" } Here's a sample line