Created
September 14, 2022 16:54
-
-
Save modster/5a34b10667931b4990369c8706839066 to your computer and use it in GitHub Desktop.
Edge Tools Launch Config
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
{ | |
"configurations": [ | |
{ | |
"type": "msedge", | |
"name": "Launch Microsoft Edge", | |
"request": "launch", | |
"runtimeArgs": ["--remote-debugging-port=9222"], | |
"url": "d:\\Projects\\example\\index.html", | |
"presentation": { | |
"hidden": true | |
} | |
}, | |
{ | |
"type": "msedge", | |
"name": "Launch Microsoft Edge in headless mode", | |
"request": "launch", | |
"runtimeArgs": ["--headless", "--remote-debugging-port=9222"], | |
"url": "d:\\Projects\\example\\index.html", | |
"presentation": { | |
"hidden": true | |
} | |
}, | |
{ | |
"type": "vscode-edge-devtools.debug", | |
"name": "Open Edge DevTools", | |
"request": "attach", | |
"url": "d:\\Projects\\example\\index.html", | |
"presentation": { | |
"hidden": true | |
} | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "Launch Edge Headless and attach DevTools", | |
"configurations": [ | |
"Launch Microsoft Edge in headless mode", | |
"Open Edge DevTools" | |
] | |
}, | |
{ | |
"name": "Launch Edge and attach DevTools", | |
"configurations": ["Launch Microsoft Edge", "Open Edge DevTools"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment