gerbil/.vscode/tasks.json

61 lines
1.2 KiB
JSON
Executable file

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