Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Last active May 22, 2018 12:18
Show Gist options
  • Save tonysneed/ced37e8f7d8e72a07aaf35b60241f041 to your computer and use it in GitHub Desktop.
Save tonysneed/ced37e8f7d8e72a07aaf35b60241f041 to your computer and use it in GitHub Desktop.
Chrome Debugging with VS Code and Angular CLI
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "ng serve",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceRoot}"
},
{
"type": "chrome",
"request": "launch",
"name": "ng test",
"url": "http://localhost:9876/debug.html",
"webRoot": "${workspaceRoot}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment