Skip to content

Instantly share code, notes, and snippets.

@ptdel
Created October 27, 2022 18:23
Show Gist options
  • Save ptdel/8539b1ee2244bd78f65cebca3eba48f7 to your computer and use it in GitHub Desktop.
Save ptdel/8539b1ee2244bd78f65cebca3eba48f7 to your computer and use it in GitHub Desktop.
VSCode TypeScript NestJS Launch Profile
{
"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