Is there a option in VSCode when debugging like the 'Just my Code' option in Visual Studio?
I want to step through my own code, not all the internal node code like next_tick.js
I've tried adding
"skipFiles": [
"node_modules/**/*.js"
]
to the debug configuration, but that's not working.