Skip to content

Instantly share code, notes, and snippets.

@alexweininger
Created July 1, 2020 02:21
Show Gist options
  • Select an option

  • Save alexweininger/9fbc8735c5ff070d04b4800e2a3198b4 to your computer and use it in GitHub Desktop.

Select an option

Save alexweininger/9fbc8735c5ff070d04b4800e2a3198b4 to your computer and use it in GitHub Desktop.
Launch Configuration for Debugging Deno in VS Code
{
"version": "0.2.0",
"configurations": [
{
"name": "Deno",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": ["run", "--inspect-brk", "-A", "${fileBasename}"],
"outputCapture": "std",
"port": 9229
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment