Can't step through 'Just my code' when using VSCode?

Viewed 2707

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.

1 Answers
Related