When debugging in vscode I'd like to make some "blackboxing" and do not enter into code I didn't write. How can I do this?
You can also click on the line you want to skip to and hit Ctrl+F10 (Run to Cursor).
A launch. json file is used to configure the debugger in Visual Studio Code. Visual Studio Code generates a launch. json (under a . vscode folder in your project) with almost all of the required information.
In your launch or attach debug task you can enter a
"skipfiles"
option which is
"An array of file or folder names, or path globs, to skip when debugging."
For example, from skipping node internals during debugging
"skipFiles": [ "${workspaceFolder}/node_modules/**/*.js", "${workspaceFolder}/yourLibToSkip/**/*.js" ]
Also, there is a "magic reference" to the built-in core node modules you can use:
"skipFiles": [ "<node_internals>/**/*.js" ]
Only this worked for me.
"debug.javascript.terminalOptions": { "skipFiles": [ "<node_internals>/**" ] }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With