Skip to content

Instantly share code, notes, and snippets.

@talesmgodois
Created October 5, 2020 12:17
Show Gist options
  • Save talesmgodois/ce92304aab24f4b501bb4a256ca38d0d to your computer and use it in GitHub Desktop.
Save talesmgodois/ce92304aab24f4b501bb4a256ca38d0d to your computer and use it in GitHub Desktop.
Debug Nest vscode
{
"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