From 05f630a5669b23bd8f003eed23d9133e88c2b724 Mon Sep 17 00:00:00 2001 From: Kyle Cunningham Date: Thu, 3 Nov 2022 21:08:38 +0700 Subject: [PATCH] Add VSCode launch configuration to debug in remote Chrome (#58108) --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 112f73498bc..22f7c49d9a9 100644 --- a/.vscode/launch.json +++ b/.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",