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