Created
August 23, 2016 07:50
-
-
Save nacho4d/c7eb894dc60c586f37fde525d50a1742 to your computer and use it in GitHub Desktop.
.vscode/launch.json for Google Chrome Canary
This file contains hidden or 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": [ | |
{ | |
"name": "Launch index.html", | |
"type": "chrome", | |
"request": "launch", | |
"file": "${workspaceRoot}/index.html", | |
"userDataDir": "${workspaceRoot}/out/chrome", | |
"runtimeExecutable": "/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary" | |
}, | |
{ | |
"name": "Launch localhost with sourcemaps", | |
"type": "chrome", | |
"request": "launch", | |
"url": "http://localhost/mypage.html", | |
"sourceMaps": true, | |
"webRoot": "wwwroot" | |
}, | |
{ | |
"name": "Attach", | |
"type": "chrome", | |
"request": "attach", | |
"port": 9222 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment