gerbil/.vscode/tasks.json
2026-03-15 17:56:07 -07:00

49 lines
1,008 B
JSON
Executable file

{
"version": "2.0.0",
"tasks": [
{
"label": "Start Development Server",
"type": "shell",
"command": "pnpm dev",
"isBackground": true,
"problemMatcher": [],
"group": "build"
},
{
"label": "Build for Production",
"type": "shell",
"command": "pnpm build",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
},
{
"label": "Lint and Fix",
"type": "shell",
"command": "pnpm fix",
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
},
{
"label": "Check All (Lint + Format)",
"type": "shell",
"command": "pnpm check",
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}