From 9ee361df28cbdb5dac5be904e67c28d17e5b4c4d Mon Sep 17 00:00:00 2001 From: Joe Ludwig Date: Tue, 9 Feb 2021 21:16:59 -0800 Subject: [PATCH] Switched debug type pwa-chrome is the new thing that came in with more recent versions of Visual Studio Code. It enables the "targetSelection" setting, which lets you pick which thing to debug instead of debugging every Aardvark gadget. --- .vscode/launch.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9c58677..9db805b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,8 @@ "version": "0.2.0", "configurations": [ { - "type": "chrome", + "type": "pwa-chrome", + "targetSelection": "pick", "request": "attach", "name": "Attach to aardvark_renderer", "sourceMaps": true,