Skip to content

Instantly share code, notes, and snippets.

@auchenberg
Created June 14, 2017 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save auchenberg/a3acb5f65659152684a95067eef99b3e to your computer and use it in GitHub Desktop.
Save auchenberg/a3acb5f65659152684a95067eef99b3e to your computer and use it in GitHub Desktop.
VS Code Angular cli debug config
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome with ng serve",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceRoot}"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome with 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