From c5738792b080389408fd55c9d9901aae9040b381 Mon Sep 17 00:00:00 2001 From: Saad Jutt Date: Mon, 28 Feb 2022 04:03:00 +0500 Subject: [PATCH] chore: debugger for api --- api/.vscode/launch.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 api/.vscode/launch.json diff --git a/api/.vscode/launch.json b/api/.vscode/launch.json new file mode 100644 index 0000000..1516bf5 --- /dev/null +++ b/api/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch via NPM", + "request": "launch", + "runtimeArgs": ["run-script", "start"], + "runtimeExecutable": "npm", + "skipFiles": ["/**"], + "type": "pwa-node" + } + ] +}