From 59b9d0214d1cb2426189a05b2f9a7f222bcaf15b Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Sun, 9 Jul 2023 21:31:17 +0000 Subject: [PATCH] build(*): Add vscode debugging --- server/.vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 server/.vscode/launch.json diff --git a/server/.vscode/launch.json b/server/.vscode/launch.json new file mode 100644 index 0000000..23d8cfe --- /dev/null +++ b/server/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch via NPM", + "request": "launch", + "runtimeArgs": [ + "run", + "dev" + ], + "runtimeExecutable": "npm", + "skipFiles": [ + "/**" + ], + "type": "pwa-node", + "stopOnEntry": true, + } + ] +} \ No newline at end of file