Skip to content

Instantly share code, notes, and snippets.

@houstondapaz
Created June 12, 2018 17:26
Show Gist options
  • Save houstondapaz/9b6e9805e601e336d3ea9b423761b1e7 to your computer and use it in GitHub Desktop.
Save houstondapaz/9b6e9805e601e336d3ea9b423761b1e7 to your computer and use it in GitHub Desktop.
Vscode launch for debug async/await
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/index.js",
"skipFiles": [
"<node_internals>/**"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment