Skip to content
Closed

Master #5931

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"configurations": [
{
"type": "msedge",
"name": "Launch Microsoft Edge",
"request": "launch",
"runtimeArgs": [
"--remote-debugging-port=9222"
],
"url": "c:\\Users\\Admin\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.6\\out\\startpage\\index.html", // Provide your project's url to finish configuring

Check warning on line 10 in .vscode/launch.json

View workflow job for this annotation

GitHub Actions / Check Spelling

`startpage` is not a recognized word. (unrecognized-spelling)

Check warning on line 10 in .vscode/launch.json

View workflow job for this annotation

GitHub Actions / Check Spelling

`edgedevtools` is not a recognized word. (unrecognized-spelling)
"presentation": {
"hidden": true
}
},
{
"type": "msedge",
"name": "Launch Microsoft Edge in headless mode",
"request": "launch",
"runtimeArgs": [
"--headless",
"--remote-debugging-port=9222"
],
"url": "c:\\Users\\Admin\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.6\\out\\startpage\\index.html", // Provide your project's url to finish configuring

Check warning on line 23 in .vscode/launch.json

View workflow job for this annotation

GitHub Actions / Check Spelling

`startpage` is not a recognized word. (unrecognized-spelling)

Check warning on line 23 in .vscode/launch.json

View workflow job for this annotation

GitHub Actions / Check Spelling

`edgedevtools` is not a recognized word. (unrecognized-spelling)
"presentation": {
"hidden": true
}
},
{
"type": "vscode-edge-devtools.debug",
"name": "Open Edge DevTools",
"request": "attach",
"url": "c:\\Users\\Admin\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.6\\out\\startpage\\index.html", // Provide your project's url to finish configuring

Check warning on line 32 in .vscode/launch.json

View workflow job for this annotation

GitHub Actions / Check Spelling

`startpage` is not a recognized word. (unrecognized-spelling)

Check warning on line 32 in .vscode/launch.json

View workflow job for this annotation

GitHub Actions / Check Spelling

`edgedevtools` is not a recognized word. (unrecognized-spelling)
"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"
]
}
]
}
Loading