Search code examples
javascriptvisual-studiodebuggingchrome-debugging

Prevent automatic "step into" inside .min.js files in visual studio, while debugging


Is there any option like debug Just my Code on the line of C#, to prevent step into Javascript minified libraries?


Solution

  • In Visual Studio, there is no option "Just my Code" for JavaScript code, but in the browser if you are using F12 Developer tools, and you'll find "Just my code" which could prevent the Debugger tool from stepping into a library code.

    The official doc about
    Just my Code