Set up Visual Code debugger for Angular CLI
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}"
}
- Run your app in node debug mode
node debug node_modules/angular-cli/bin/ng serve
- Run
Attach
in Debugger menu