From a2b564c16383e8c7506c3390656c70a937cfa7d5 Mon Sep 17 00:00:00 2001 From: Steffanie Zhang Date: Sat, 15 Nov 2025 21:25:02 +1300 Subject: [PATCH] Create launch.json --- .vscode/launch.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..4b7bcd1f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Browse Lite: Attach", + "type": "browse-lite", + "request": "attach" + }, + { + "name": "Python Debugger: Current File", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + }, + { + "name": "Browse Lite: Launch", + "type": "browse-lite", + "request": "launch", + "url": "http://localhost:3000" + } + ] +}