简体   繁体   中英

How to ignore jQuery breakpoints when debugging in Visual Studio or Is it possible to blackbox js script in Visual Studio 2019?

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?

黑盒子

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

"skipFiles": [
    "**/jquery*.min.js"
]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM