From ff4db7fa678b3064abca55ca14c1069e7d75518d Mon Sep 17 00:00:00 2001 From: raskanskyz Date: Thu, 11 May 2023 23:16:48 +0300 Subject: [PATCH] fix(launch.json): set "cwd" to apps/api --- .vscode/launch.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1be39f937..8ea66ae2b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -18,7 +18,8 @@ "envFile": "${workspaceFolder}/.env", "type": "node", "request": "launch", - "name": "Launch Program", + "name": "Debug api", + "cwd": "${workspaceFolder}/apps/api", "program": "${workspaceFolder}/apps/api/src/main.ts", "runtimeArgs": ["--nolazy", "-r", "ts-node/register"], "outFiles": ["${workspaceFolder}/dist/apps/api/**/*.js"],