From 92baa07e76af43b9a9408ce6a12d95a9f4ffbdda Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 16 Jan 2025 23:32:13 -0800 Subject: [PATCH] Update launch.json --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index ea22c29cb5..d8efde85d1 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -160,14 +160,14 @@ "request": "launch", "name": "bun run [file]", "program": "${workspaceFolder}/build/debug/bun-debug", - "args": ["--eval", "console.warn(new Error(\"hello\"))"], + "args": ["${file}"], "cwd": "${fileDirname}", "env": { "FORCE_COLOR": "0", "BUN_DEBUG_QUIET_LOGS": "1", "BUN_GARBAGE_COLLECTOR_LEVEL": "2", }, - "console": "integratedTerminal", + "console": "internalConsole", // Don't pause when the GC runs while the debugger is open. "postRunCommands": ["command source '${workspaceFolder}/misctools/lldb/lldb_commands'"], },