aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vscode/launch.json21
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"],