gerbil/.vscode/tasks.json

73 lines
1.5 KiB
JSON
Executable file

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