diff options
author | 2022-11-22 02:13:25 -0800 | |
---|---|---|
committer | 2022-11-22 02:13:25 -0800 | |
commit | 3cf229a89824d8d0820724c14c3839cd6ac39940 (patch) | |
tree | 1de7bf286a2faf70e5d6d73211fe995a10c430b0 | |
parent | e94172255d64ad868830d150a540ed606c512b53 (diff) | |
download | bun-3cf229a89824d8d0820724c14c3839cd6ac39940.tar.gz bun-3cf229a89824d8d0820724c14c3839cd6ac39940.tar.zst bun-3cf229a89824d8d0820724c14c3839cd6ac39940.zip |
Update launch.json
-rw-r--r-- | .vscode/launch.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 5d4b48c75..b70542414 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -42,6 +42,18 @@ { "type": "lldb", "request": "launch", + "name": "bun run (hot)", + "program": "bun-debug", + "args": ["--hot", "${file}"], + "cwd": "${file}/../../", + "env": { + "FORCE_COLOR": "1" + }, + "console": "internalConsole" + }, + { + "type": "lldb", + "request": "launch", "name": "bun run", "program": "bun-debug", "args": ["check.tsx", "-c"], @@ -110,6 +122,15 @@ { "type": "lldb", "request": "launch", + "name": "Build zig unit test", + "program": "make", + "args": ["build-unit", "${file}"], + "cwd": "${workspaceFolder}", + "console": "internalConsole" + }, + { + "type": "lldb", + "request": "launch", "name": "Run zig unit test", "program": "${workspaceFolder}/zig-out/bin/test", "args": ["abc"], |