From 716f7875a2fe4cec5433f64651a7f50cce58a41e Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Tue, 20 May 2025 13:02:41 -0700 Subject: Support Images and PDFs (#447) --- .vscode/launch.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index 8e8e56b6..5a7c6522 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -42,6 +42,46 @@ "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "skipFiles": ["/**"] + }, + { + "type": "node", + "request": "launch", + "name": "Debug Server Test: read-many-files", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", + "test", + "-w", + "packages/server", + "--", + "--inspect-brk=9229", + "--no-file-parallelism", + "${workspaceFolder}/packages/server/src/tools/read-many-files.test.ts" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "skipFiles": ["/**"] + }, + { + "type": "node", + "request": "launch", + "name": "Debug CLI Test: atCommandProcessor", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", + "test", + "-w", + "packages/cli", + "--", + "--inspect-brk=9229", + "--no-file-parallelism", + "${workspaceFolder}/packages/cli/src/ui/hooks/atCommandProcessor.test.ts" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "skipFiles": ["/**"] } ] } -- cgit v1.2.3