Skip to content

Instantly share code, notes, and snippets.

@gauravve
Last active September 7, 2018 21:35
Show Gist options
  • Save gauravve/a69c9a5a611fbb8a3b091a907105e764 to your computer and use it in GitHub Desktop.
Save gauravve/a69c9a5a611fbb8a3b091a907105e764 to your computer and use it in GitHub Desktop.
VScode configuration serverless debug
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Serverless Offline",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"debug"
],
"port": 9229
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment