Skip to content

Instantly share code, notes, and snippets.

@nivesh2
Created November 2, 2020 08:33
Show Gist options
  • Save nivesh2/84ef55f5d48c0798719a05fa7e96302f to your computer and use it in GitHub Desktop.
Save nivesh2/84ef55f5d48c0798719a05fa7e96302f to your computer and use it in GitHub Desktop.
vs code debug ESM node.js
{
"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"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment