Files
findyourpilot/.vscode/tasks.json

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": []
}
]
}