From 3b0a8631ed51818d3973151144ff2dbe81a0e378 Mon Sep 17 00:00:00 2001 From: Danil Kovtonyuk Date: Mon, 13 Sep 2021 23:37:37 +1000 Subject: [PATCH] feat: add vscode debug --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5f9b597 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // 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": [ + { + "type": "node", + "request": "launch", + "name": "Nest Debug", + "runtimeExecutable": "yarn", + "runtimeArgs": ["run", "start:debug", "--", "--inspect-brk"], + "console": "integratedTerminal", + "restart": true, + "protocol": "auto", + "port": 9229, + "autoAttachChildProcesses": true + } + ] +}