1

The same question as Is it possible to blackbox vendor code when using VSCode's node debugger? but for Visual Studio 2019.

Every time I am debugging and I running into jquery.min.js it is taking long time to overcome it, I keep pressings Continue but it stepping there every time for a long time. How can I blackbox jquery.min.js in Visual Studio 2019?

blackbox

Jack J Jun
  • 5,633
  • 1
  • 9
  • 27
MikeRyz
  • 209
  • 1
  • 3
  • 18
  • I am experiencing the same in VS 2022. It does not always happen so it is hard to identify why. I have to Continue up to 10 times sometimes. – DMadden51 Aug 31 '22 at 13:57

1 Answers1

1

Place something like this in your launch configuration (launch.json):

"skipFiles": [
    "**/jquery*.min.js"
]
kurdtpage
  • 3,142
  • 1
  • 24
  • 24