Last active
September 18, 2017 13:36
-
-
Save BrockReece/914dd774f4c33551736f9f716d374dfe to your computer and use it in GitHub Desktop.
Chrome debugging in Visual Studio Code
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": [ | |
{ | |
"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