stock-bot/.vscode/tasks.json
2025-06-09 22:55:51 -04:00

19 lines
313 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Start Data Service",
"type": "shell",
"command": "bun",
"args": [
"run",
"dev"
],
"group": "build",
"isBackground": true,
"problemMatcher": [
"$tsc"
]
}
]
}