Files
findyourpilot/.vscode/tasks.json
jose 828bf30faf feat: login (#2)
Co-authored-by: Jrodenas <jrodenas@gmail.com>
Reviewed-on: #2
2026-03-23 19:05:56 +00:00

26 lines
389 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "pnpm: dev",
"command": "pnpm dev",
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"type": "shell",
"label": "pnpm: build",
"command": "pnpm build",
"problemMatcher": []
}
]
}