28 lines
613 B
JSON
28 lines
613 B
JSON
// Project-local debug tasks
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"adapter": "CodeLLDB",
|
|
"label": "zig build run",
|
|
"request": "launch",
|
|
"build": {
|
|
"label": "zig build",
|
|
"command": "zig",
|
|
"args": ["build"],
|
|
"env": {},
|
|
"cwd": null,
|
|
"use_new_terminal": false,
|
|
"allow_concurrent_runs": false,
|
|
"reveal": "always",
|
|
"reveal_target": "dock",
|
|
"hide": "never",
|
|
//"tags": [],
|
|
"shell": "system",
|
|
"show_summary": false,
|
|
"show_command": false,
|
|
},
|
|
},
|
|
]
|