Update edge VSCode extension (#20818)

* Replace edge extension

* Put name attributes at the top for consistency
This commit is contained in:
Meredith 2024-04-03 13:33:28 -04:00 committed by GitHub
parent 35848e4582
commit 6e5dacc7ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 5 deletions

View file

@ -11,6 +11,7 @@
"sbenp.prettier-vscode",
"silvenon.mdx",
"waderyan.nodejs-extension-pack",
"koichisasada.vscode-rdbg"
"koichisasada.vscode-rdbg",
"ms-edgedevtools.vscode-edge-devtools",
]
}

8
.vscode/launch.json vendored
View file

@ -12,16 +12,16 @@
"type": "node"
},
{
"type": "edge",
"request": "attach",
"name": "Attach to Edge",
"type": "vscode-edge-devtools.debug",
"request": "attach",
"port": 2015,
"webRoot": "${workspaceFolder}"
},
{
"name": "Attach to Chrome",
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"webRoot": "${workspaceFolder}/app/javascript/packs"
},
@ -73,9 +73,9 @@
"program": "${workspaceRoot}/bin/cucumber"
},
{
"name": "Jest Current File",
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${relativeFile}"],
"console": "integratedTerminal",