How do I skip external code when debugging in VS Code

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"
]

Leave a Comment