From 73acf9f7b8876fb92915e3808e72c6c4dfd6f2c2 Mon Sep 17 00:00:00 2001 From: PromptBrainless <164266044+PromptBrainless@users.noreply.github.com> Date: Fri, 12 Jun 2026 20:58:29 +0000 Subject: [PATCH] tryhard --- .vscode/launch.json | 32 ++++++++++++++++++++++++++++++++ .vscode/mcp.json | 14 ++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/mcp.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..cc9ac8d7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,32 @@ +{ + // Verwendet IntelliSense zum Ermitteln möglicher Attribute. + // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. + // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Program", + "program": "${workspaceFolder}/app.js", + "request": "launch", + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { + "name": "Attach to Chrome", + "port": 9222, + "request": "attach", + "type": "chrome", + "webRoot": "${workspaceFolder}" + }, + + { + "type": "chrome", + "request": "launch", + "name": "Chrome mit \"localhost\" starten", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/.vscode/mcp.json b/.vscode/mcp.json new file mode 100644 index 00000000..38894212 --- /dev/null +++ b/.vscode/mcp.json @@ -0,0 +1,14 @@ +{ + "servers": { + "microsoft/markitdown": { + "type": "stdio", + "command": "uvx", + "args": [ + "markitdown-mcp@0.0.1a4" + ], + "gallery": "https://api.mcp.github.com", + "version": "1.0.0" + } + }, + "inputs": [] +} \ No newline at end of file