Skip to content

Instantly share code, notes, and snippets.

@jplindgren
Created May 24, 2020 22:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jplindgren/bccfa2209733eba4af09cda30f511eb8 to your computer and use it in GitHub Desktop.
Save jplindgren/bccfa2209733eba4af09cda30f511eb8 to your computer and use it in GitHub Desktop.
Launch.json to debug NestJs Applications.
{
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Nest App",
"args": [
"src/main.ts"
],
"runtimeArgs": [
"-r",
"ts-node/register",
"-r",
"tsconfig-paths/register"
],
"autoAttachChildProcesses": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment