Skip to content

Instantly share code, notes, and snippets.

@nivesh2
Created November 2, 2020 08:33
Show Gist options
  • Select an option

  • Save nivesh2/84ef55f5d48c0798719a05fa7e96302f to your computer and use it in GitHub Desktop.

Select an option

Save nivesh2/84ef55f5d48c0798719a05fa7e96302f to your computer and use it in GitHub Desktop.

Revisions

  1. nivesh2 created this gist Nov 2, 2020.
    23 changes: 23 additions & 0 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    {
    "version": "0.2.0",
    "configurations": [
    {
    "type": "node",
    "request": "launch",
    "name": "Debug Lambda",
    "skipFiles": [
    "<node_internals>/**"
    ],
    "outputCapture": "std",
    "console": "integratedTerminal",
    "runtimeArgs": [
    "-r",
    "esm"
    ],
    "env": {
    "ENVIRONMENT": "UAT2"
    },
    "program": "${workspaceFolder}/mock/debug.js"
    }
    ]
    }