Created
October 5, 2020 12:17
-
-
Save talesmgodois/ce92304aab24f4b501bb4a256ca38d0d to your computer and use it in GitHub Desktop.
Debug Nest vscode
This file contains hidden or 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" | |
], | |
"sourceMaps": true, | |
"cwd": "${workspaceRoot}", | |
"protocol": "inspector" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment