Skip to content

Instantly share code, notes, and snippets.

@gthrm
Forked from fhefh2015/launch.json
Created December 8, 2022 17:21
Show Gist options
  • Save gthrm/eceedea576d9bc41b1e93cfd1f77f7c8 to your computer and use it in GitHub Desktop.
Save gthrm/eceedea576d9bc41b1e93cfd1f77f7c8 to your computer and use it in GitHub Desktop.

Revisions

  1. @fhefh2015 fhefh2015 revised this gist Sep 27, 2020. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion launch.json
    Original file line number Diff line number Diff line change
    @@ -18,7 +18,8 @@
    }
    ]
    }
    and in package.json (Nest new CLI commands, requires 6.8.x)

    //package.json (Nest new CLI commands, requires 6.8.x)

    {
    "name": "nest-app",
  2. @fhefh2015 fhefh2015 revised this gist Sep 27, 2020. 1 changed file with 4 additions and 3 deletions.
    7 changes: 4 additions & 3 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,10 @@
    //.vscode/launch.json

    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387

    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
  3. @fhefh2015 fhefh2015 created this gist Sep 27, 2020.
    27 changes: 27 additions & 0 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    //.vscode/launch.json

    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
    "type": "node",
    "request": "attach",
    "name": "Attach NestJS WS",
    "port": 9229,
    "restart": true,
    "stopOnEntry": false,
    "protocol": "inspector"
    }
    ]
    }
    and in package.json (Nest new CLI commands, requires 6.8.x)

    {
    "name": "nest-app",
    "scripts": {
    "start:debug": "nest start --debug --watch"
    }
    }