diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..26834bf --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Deno Tests", + "type": "node", + "request": "launch", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "/home/maxp/.deno/bin/deno", + "runtimeArgs": [ + "test", + "--inspect-brk", + "--allow-all", + "tests/*.ts" + ], + "attachSimplePort": 9229, + "console": "integratedTerminal" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..64bbc2a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "editor.tabSize": 4, + "editor.insertSpaces": true, + "deno.enable": true, + "editor.formatOnSave": true, + "editor.defaultFormatter": "denoland.vscode-deno", + "editor.detectIndentation": false, + "editor.indentSize": "tabSize" +} \ No newline at end of file