Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wesleygrimes/f247b203cb03aeb540d655da76e3a8f4 to your computer and use it in GitHub Desktop.

Select an option

Save wesleygrimes/f247b203cb03aeb540d655da76e3a8f4 to your computer and use it in GitHub Desktop.
Recommended .vscode/launch.json for debugging angular applications
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug App",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4200",
"sourceMaps": true,
"webRoot": "${workspaceRoot}/src",
"userDataDir": "${workspaceRoot}/.vscode/chrome",
"sourceMapPathOverrides": {
"webpack:///./~/*": "${workspaceRoot}/node_modules/*",
"webpack:///./src/*": "${workspaceRoot}/src/*"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment