Update launch.json

This commit is contained in:
Jarred Sumner
2025-01-16 23:32:13 -08:00
parent 503ea1b4d4
commit 92baa07e76

4
.vscode/launch.json generated vendored
View File

@@ -160,14 +160,14 @@
"request": "launch", "request": "launch",
"name": "bun run [file]", "name": "bun run [file]",
"program": "${workspaceFolder}/build/debug/bun-debug", "program": "${workspaceFolder}/build/debug/bun-debug",
"args": ["--eval", "console.warn(new Error(\"hello\"))"], "args": ["${file}"],
"cwd": "${fileDirname}", "cwd": "${fileDirname}",
"env": { "env": {
"FORCE_COLOR": "0", "FORCE_COLOR": "0",
"BUN_DEBUG_QUIET_LOGS": "1", "BUN_DEBUG_QUIET_LOGS": "1",
"BUN_GARBAGE_COLLECTOR_LEVEL": "2", "BUN_GARBAGE_COLLECTOR_LEVEL": "2",
}, },
"console": "integratedTerminal", "console": "internalConsole",
// Don't pause when the GC runs while the debugger is open. // Don't pause when the GC runs while the debugger is open.
"postRunCommands": ["command source '${workspaceFolder}/misctools/lldb/lldb_commands'"], "postRunCommands": ["command source '${workspaceFolder}/misctools/lldb/lldb_commands'"],
}, },