diff options
author | LarsVomMars | 2020-07-09 23:58:30 +0200 |
---|---|---|
committer | LarsVomMars | 2020-07-09 23:58:30 +0200 |
commit | e9aa61e7fb8c048afe96d000b7ba0cb7261791f1 (patch) | |
tree | c320802018dc05e48b986e761150218697091776 /.vscode/launch.json | |
parent | 5c6e6e9962187335d80ee8f31921ee561c430365 (diff) |
Boilerplate, debugger, modules, ...
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..80b8701 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Deno", + "type": "node", + "request": "launch", + "cwd": "${workspaceFolder}/src/", + "runtimeExecutable": "deno", + "runtimeArgs": ["run", "--inspect", "-A", "${file}"], + "port": 9229 + } + ] + }
\ No newline at end of file |