From c801787ef614e1eb423c7bd6b6278470d510a999 Mon Sep 17 00:00:00 2001
From: ahmetbsbnr <150085455+ahmetbsbnr@users.noreply.github.com>
Date: Thu, 15 May 2025 23:41:20 +0200
Subject: [PATCH] Ajout dossier .vscode

---
 .vscode/launch.json | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 .vscode/launch.json

diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..a4e5c43
--- /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
-- 
GitLab