Skip to content

Instantly share code, notes, and snippets.

@mitchgollub
Created January 31, 2020 03:18
Show Gist options
  • Save mitchgollub/d50dded5bdf1240a6f3ddfae33048ebc to your computer and use it in GitHub Desktop.
Save mitchgollub/d50dded5bdf1240a6f3ddfae33048ebc to your computer and use it in GitHub Desktop.
AWS SAM Lambda VS Code launch config
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via NPM",
"runtimeExecutable": "npm",
"cwd": "${workspaceFolder}/hello-world",
"runtimeArgs": [
"run-script",
"debug"
],
"port": 9229,
"skipFiles": [
"<node_internals>/**"
],
"localRoot": "${workspaceRoot}/hello-world",
"remoteRoot": "/var/task"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment