Skip to content

Instantly share code, notes, and snippets.

@transcendr
Created August 23, 2018 12:56
Show Gist options
  • Save transcendr/af847ac59dc1d40e3b81a86843e533ba to your computer and use it in GitHub Desktop.
Save transcendr/af847ac59dc1d40e3b81a86843e533ba to your computer and use it in GitHub Desktop.
vscode launch debug config
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [{
"type": "chrome",
"request": "launch",
"name": "Chrome Canary",
"url": "http://localhost:3100",
"runtimeExecutable": "C:/Users/trans/AppData/Local/Google/Chrome SxS/Application/chrome.exe",
// "userDataDir": "${workspaceRoot}/.vscode/chrome",
"webRoot": "${workspaceFolder}",
"skipFiles": [
"node_modules"
]
},
{
"type": "chrome",
"request": "launch",
"name": "Google Chrome",
"url": "http://localhost:3100",
"webRoot": "${workspaceFolder}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment