aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorLarsVomMars2020-07-09 23:58:30 +0200
committerLarsVomMars2020-07-09 23:58:30 +0200
commite9aa61e7fb8c048afe96d000b7ba0cb7261791f1 (patch)
treec320802018dc05e48b986e761150218697091776 /.vscode/launch.json
parent5c6e6e9962187335d80ee8f31921ee561c430365 (diff)
Boilerplate, debugger, modules, ...
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json14
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