Add VSCode launch configuration to debug in remote Chrome (#58108)

pull/58155/head
Kyle Cunningham 3 years ago committed by GitHub
parent 4b1ddba0a8
commit 05f630a566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      .vscode/launch.json

@ -11,6 +11,13 @@
"cwd": "${workspaceFolder}",
"args": ["--homepath", "${workspaceFolder}", "--packaging", "dev"]
},
{
"name": "Attach to Chrome",
"port": 9222,
"request": "attach",
"type": "chrome",
"webRoot": "${workspaceFolder}"
},
{
"name": "Debug Jest test",
"type": "node",

Loading…
Cancel
Save