server-ready: support debugWithEdge as well as debugWithChrome

This commit is contained in:
Connor Peet
2021-05-07 12:02:36 -07:00
parent 244eccdbcc
commit 54ce4a405e
2 changed files with 23 additions and 11 deletions

View File

@@ -69,19 +69,23 @@
"additionalProperties": false,
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
"default": {
"action": "openExternally"
"action": "debugWithEdge",
"pattern": "listening on port ([0-9]+)",
"uriFormat": "http://localhost:%s",
"webRoot": "${workspaceFolder}"
},
"properties": {
"action": {
"type": "string",
"enum": [
"debugWithChrome"
"debugWithChrome",
"debugWithEdge"
],
"enumDescriptions": [
"%debug.server.ready.action.debugWithChrome.description%"
],
"markdownDescription": "%debug.server.ready.action.description%",
"default": "openExternally"
"default": "debugWithEdge"
},
"pattern": {
"type": "string",