Skip to content

Instantly share code, notes, and snippets.

@jplindgren
Created May 24, 2020 22:07
Show Gist options
  • Save jplindgren/bccfa2209733eba4af09cda30f511eb8 to your computer and use it in GitHub Desktop.
Save jplindgren/bccfa2209733eba4af09cda30f511eb8 to your computer and use it in GitHub Desktop.

Revisions

  1. jplindgren created this gist May 24, 2020.
    19 changes: 19 additions & 0 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    {
    "configurations": [
    {
    "type": "node",
    "request": "launch",
    "name": "Debug Nest App",
    "args": [
    "src/main.ts"
    ],
    "runtimeArgs": [
    "-r",
    "ts-node/register",
    "-r",
    "tsconfig-paths/register"
    ],
    "autoAttachChildProcesses": true
    }
    ]
    }