From fcbe5fa4655b354fc2b5ea043d4e92da2cef15f8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cl=C3=A9ment=20Bailly?=
 <clement.bailly3@etu.univ-lorraine.fr>
Date: Wed, 7 May 2025 11:08:11 +0200
Subject: [PATCH] Ajout .vscode

---
 qualdev/qualdev/.vscode/launch.json   | 25 +++++++++++++++++++++++++
 qualdev/qualdev/.vscode/settings.json |  7 +++++++
 2 files changed, 32 insertions(+)
 create mode 100644 qualdev/qualdev/.vscode/launch.json
 create mode 100644 qualdev/qualdev/.vscode/settings.json

diff --git a/qualdev/qualdev/.vscode/launch.json b/qualdev/qualdev/.vscode/launch.json
new file mode 100644
index 0000000..b745286
--- /dev/null
+++ b/qualdev/qualdev/.vscode/launch.json
@@ -0,0 +1,25 @@
+{
+    // Use IntelliSense to learn about possible attributes.
+    // Hover to view descriptions of existing attributes.
+    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+    "version": "0.2.0",
+    "configurations": [
+
+        {
+            "request": "launch",
+            "name": "Launch Program",
+            "type": "node",
+            "program": "${workspaceFolder}/debug1.ts",
+            "cwd": "${workspaceFolder}",
+            "env": {},
+            "runtimeExecutable": "/home/e40792u/.deno/bin/deno",
+            "runtimeArgs": [
+                "run",
+                "--unstable",
+                "--inspect-wait",
+                "--allow-all"
+            ],
+            "attachSimplePort": 9229
+        }
+    ]
+}
\ No newline at end of file
diff --git a/qualdev/qualdev/.vscode/settings.json b/qualdev/qualdev/.vscode/settings.json
new file mode 100644
index 0000000..d5c910e
--- /dev/null
+++ b/qualdev/qualdev/.vscode/settings.json
@@ -0,0 +1,7 @@
+{
+    "deno.enable": true,
+    "deno.lint": true,
+    "deno.testing.enable": true,
+    "editor.formatOnSave": true,
+    "editor.defaultFormatter": "denoland.vscode-deno",
+}
\ No newline at end of file
-- 
GitLab