diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000000000000000000000000000000000..a4e5c432d324d54833aff19f37fdb7d7c05a46bf --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Deno (macOS)", + "type": "pwa-node", + "request": "launch", + "program": "${workspaceFolder}/test.ts", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "/Users/ahmetbasbunar/.deno/bin/deno", + "runtimeArgs": [ + "run", + "--inspect-brk", + "--allow-all" + ], + "attachSimplePort": 9229, + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen" + // pour plus de logs : "trace": "verbose" + } + ] +} \ No newline at end of file