mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-26 14:12:23 +00:00
20 lines
417 B
JSON
20 lines
417 B
JSON
|
// Static tasks configuration.
|
||
|
[
|
||
|
{
|
||
|
"label": "Cargo test",
|
||
|
"command": "cargo nextest run",
|
||
|
"env": {},
|
||
|
//"cwd": "/path/to/working/directory",
|
||
|
"use_new_terminal": false,
|
||
|
"allow_concurrent_runs": false
|
||
|
},
|
||
|
{
|
||
|
"label": "Cargo run",
|
||
|
"command": "cargo run",
|
||
|
"env": {},
|
||
|
//"cwd": "/path/to/working/directory",
|
||
|
"use_new_terminal": false,
|
||
|
"allow_concurrent_runs": false
|
||
|
}
|
||
|
]
|