From e0b2739408d93534877a6aade7079d214162eec1 Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Thu, 11 May 2023 10:28:57 +0200 Subject: [PATCH] add json configurations --- .vscode/launch.json | 20 ++++++++++++++++++++ .vscode/settings.json | 4 ++++ 2 files changed, 24 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..f35c708 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "request": "launch", + "name": "test deno-http", + "type": "node", + "program": "${workspaceFolder}/example/test.ts", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "C:\\Users\\Admin\\.deno\\bin\\deno.EXE", + "runtimeArgs": [ + "run", + "--unstable", + "--inspect-wait", + "--allow-all" + ], + "attachSimplePort": 9229 + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..eed8edf --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "deno.enable": true, + "deno.unstable": true +} \ No newline at end of file