To set up debugger in Visual Code, the debugger must be configured to attach to a node process in launch.json ( ⌘ + Shift + D to open Debugger).

{
      "name": "Attach",
      "type": "node",
      "request": "attach",
      "port": 5858,
      "address": "localhost",
      "sourceMaps": true,
      "outDir": "${workspaceRoot}/dist",
      "localRoot": "${workspaceRoot}"
    }
  1. Run your app in node debug mode node debug node_modules/angular-cli/bin/ng serve
  2. Run Attach in Debugger menu