Created
February 14, 2018 15:49
-
-
Save jsanta/835b6dc0e4a5bc855de0a461e579fe36 to your computer and use it in GitHub Desktop.
launch,json for debugging using VS Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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