priyank1205
priyank1205

Reputation: 45

How to stop VSCode from auto-skipping Node Internals while debugging

I'm trying to understand how certain node internal modules work, and wish to deliberately step into the node core while debugging my js files. I've tried setting the skipFiles property in Launch.json to an empty array [""] but VSCode somehow auto-attaches "<node_internals>/**" to it

Upvotes: 2

Views: 821

Answers (1)

orgads
orgads

Reputation: 696

This works for me:

"skipFiles": [
    "!<node_internals>/**"
],

Upvotes: 4

Related Questions