Created
July 1, 2020 02:21
-
-
Save alexweininger/9fbc8735c5ff070d04b4800e2a3198b4 to your computer and use it in GitHub Desktop.
Launch Configuration for Debugging Deno in VS Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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