Is there any documentation for attaching a debugge...
# help
r
Is there any documentation for attaching a debugger in Visual Studio Code to a locally running lambda?
Never mind, did some searching in here. For anyone looking, I set this up in launch.json:
Copy code
{
      "type": "node",
      "request": "launch",
      "name": "Launch via NPM",
      "runtimeExecutable": "npm",
      "runtimeArgs": [
        "start",
      ],
      "port": 9229,
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
j
We need to document this and have an option to increase the lambda timeout.
f
Just wanted to share a link to a previous thread on setting up vscode with sst start https://serverless-stack.slack.com/archives/C01HQQVC8TH/p1615419198020000