Created
March 23, 2023 10:19
-
-
Save javifm86/5d5ef024436403e4fc45363e857a6e62 to your computer and use it in GitHub Desktop.
Launch NestJS backend with debugger in VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Debug Nest Framework", | |
"args": ["${workspaceFolder}/src/main.ts"], | |
"runtimeArgs": [ | |
"--nolazy", | |
"-r", | |
"ts-node/register", | |
"-r", | |
"tsconfig-paths/register" | |
], | |
"sourceMaps": true, | |
"envFile": "${workspaceFolder}/.env", | |
"cwd": "${workspaceRoot}", | |
"console": "integratedTerminal", | |
"protocol": "inspector" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment