diff options
-rw-r--r-- | .vscode/launch.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 7085cc046..ee09728f1 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -112,6 +112,19 @@ { "type": "lldb", "request": "launch", + "name": "bun build debug", + "program": "bun-debug", + "args": ["build", "--platform=bun", "--outdir=/tmp/testout", "${file}"], + "cwd": "${file}/../../", + "console": "internalConsole", + "env": { + "BUN_CONFIG_MINIFY_WHITESPACE": "1" + } + }, + + { + "type": "lldb", + "request": "launch", "name": "fetch debug", "program": "${workspaceFolder}/misctools/fetch", "args": ["https://example.com", "--verbose"], |