Skip to content

Instantly share code, notes, and snippets.

@bigsan
Forked from comfortablejohn/launch.json
Created August 27, 2017 15:15
Show Gist options
  • Save bigsan/563c0daa6b717f0e00a0b24be2047009 to your computer and use it in GitHub Desktop.
Save bigsan/563c0daa6b717f0e00a0b24be2047009 to your computer and use it in GitHub Desktop.
Debug config for VSCode Chrome Debugger
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:3000",
"sourceMaps": true,
"webRoot": "${workspaceRoot}/dist",
"sourceMapPathOverrides": {
"webpack:///*": "${workspaceRoot}/*",
"webpack:///./*": "${workspaceRoot}/*",
"webpack:///src/*": "${workspaceRoot}/src/js/*",
"webpack:///./~/*": "${workspaceRoot}/node_modules/*"
},
"diagnosticLogging": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment