Skip to content

Instantly share code, notes, and snippets.

@nacho4d
Created August 23, 2016 07:50
Show Gist options
  • Save nacho4d/c7eb894dc60c586f37fde525d50a1742 to your computer and use it in GitHub Desktop.
Save nacho4d/c7eb894dc60c586f37fde525d50a1742 to your computer and use it in GitHub Desktop.
.vscode/launch.json for Google Chrome Canary
{
"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