From 23ee6996a1185b5f0726386949236eb8c1f96570 Mon Sep 17 00:00:00 2001 From: Sanyam Jain Date: Thu, 8 Aug 2024 15:34:09 -0700 Subject: [PATCH] add debugging scripts --- .vscode/launch.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..6e008a1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + // 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": [ + { + "command": "bun run dev", + "name": "Run development server", + "request": "launch", + "type": "node-terminal" + }, + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:5173", + "webRoot": "${workspaceFolder}" + } + ] +}