{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { // Has convenient settings for attaching to a NodeJS process for debugging purposes // that are NOT the default and otherwise every developers has to configure for // themselves again and again. "type": "node", "request": "attach", "name": "Attach to NodeJS", // If we don't do this, every step-into into an async function call will go into // NodeJS internals which are hard to step out of. "skipFiles": [ "/**" ], // Saves some button-pressing latency on attaching "stopOnEntry": false } ] }