Last active
April 6, 2020 09:18
-
-
Save vlrmprjct/b0390ee77604f76da0481426e96d0c76 to your computer and use it in GitHub Desktop.
VSCode debug configuration using wsl and microsoft edge ( canary ) #vscode #debug #wsl #edge #reactjs #linux #chrome #chromium #sourcemaps
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
{ | |
// https://go.microsoft.com/fwlink/?linkid=830387 | |
// https://code.visualstudio.com/docs/editor/variables-reference | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Edge", | |
"runtimeExecutable": "C:/Users/USERNAME/AppData/Local/Microsoft/Edge SxS/Application/msedge.exe", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceFolder}/src", | |
"userDataDir": "${workspaceRoot}/.vscode/edge", | |
"trace": true, | |
"sourceMaps": true, | |
"sourceMapPathOverrides": { | |
"/WSL/PATH/TO/PROJECT/src/*": "${workspaceFolder}/src/*", | |
"webpack:///src/*": "${webRoot}/*" | |
}, | |
}, | |
] | |
} |
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
{"cards":[],"boards":{"boardList":{"0":{"name":"INBOX","cards":"all","bg":"default","labels":"all"}},"boardNames":["INBOX"]},"labels":[],"lastSync":"2020-04-06T09:18:28.673Z"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment