HomeServer/.vscode/tasks.json

26 lines
365 B
JSON
Raw Normal View History

2023-09-19 08:52:12 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
2023-10-09 09:35:24 +00:00
"label": "rust: cargo run",
},
{
"type": "flutter",
"command": "flutter",
"label": "flutter: run",
"args": [
"run",
"-d",
"web-server"
],
"options": {
"cwd": "${workspaceFolder}/frontend/"
}
2023-09-19 08:52:12 +00:00
}
]
}