Skip to content

Instantly share code, notes, and snippets.

@Leokuma
Created April 4, 2023 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leokuma/d25bfcee33cab09102dbbc165f2281cf to your computer and use it in GitHub Desktop.
Save Leokuma/d25bfcee33cab09102dbbc165f2281cf to your computer and use it in GitHub Desktop.
VS Code Deno Launch Settings
{
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Launch",
"type": "node",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": ["run", "-A", "--inspect-wait"],
"attachSimplePort": 9229
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment