From ebb8cf2329a278b2ea1b80fddcb302839f789162 Mon Sep 17 00:00:00 2001 From: Smultar Date: Fri, 5 Jan 2024 06:16:23 -0600 Subject: [PATCH] Added a default launch/debug option --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..21c35dd3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // 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": "wf.emulator.dev", + "type": "node-terminal", + "request": "launch", + "command": "pnpm run dev" + } + ] +}