Skip to content

Instantly share code, notes, and snippets.

@BrockReece
Last active September 18, 2017 13:36
Show Gist options
  • Save BrockReece/914dd774f4c33551736f9f716d374dfe to your computer and use it in GitHub Desktop.
Save BrockReece/914dd774f4c33551736f9f716d374dfe to your computer and use it in GitHub Desktop.
Chrome debugging in Visual Studio Code
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Remote debugging",
"sourceMaps": true,
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}"
},
{
"type": "node",
"request": "launch",
"name": "Launch Webpack",
"program": "${workspaceRoot}/build/dev-server.js",
"cwd": "${workspaceRoot}",
"sourceMaps": true
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment