Skip to content

Instantly share code, notes, and snippets.

@jsanta
Created February 14, 2018 15:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsanta/835b6dc0e4a5bc855de0a461e579fe36 to your computer and use it in GitHub Desktop.
Save jsanta/835b6dc0e4a5bc855de0a461e579fe36 to your computer and use it in GitHub Desktop.
launch,json for debugging using VS Code
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chromium against localhost",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/chromium-browser",
"runtimeArgs": [
"--new-window",
"-user-data-dir=\"/${workspaceFolder}/DevProfile\"",
"--remote-debugging-port=9222",
"--disable-background-networking"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment