Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created August 31, 2020 10:56
Show Gist options
  • Select an option

  • Save nmchenry01/71a821ffb704497caadd4d520db6fd31 to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/71a821ffb704497caadd4d520db6fd31 to your computer and use it in GitHub Desktop.
Launch configuration for NestJS for "Debugging NestJS with 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",
"-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