stock-bot/.vscode/tasks.json

19 lines
294 B
JSON

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