fleet/.vscode/tasks.json
Zach Wasserman 005525c88a
Add vscode configs (#2347)
This only effects contributor experience.

- Run Docker dependencies and Webpack when opening project.
- Run/debug configs for Fleet server and UI.
- Basic settings.
2021-10-04 10:14:04 -07:00

41 lines
756 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "lint",
"problemMatcher": [
"$eslint-stylish"
],
"label": "npm: lint",
"detail": "eslint frontend cypress --ext .js,.jsx,.ts,.tsx"
},
{
"type": "shell",
"label": "Docker Compose Dependencies",
"command": "docker-compose up",
"isBackground": true,
"presentation": {
"panel": "dedicated"
},
"runOptions": {
"instanceLimit": 1,
"runOn": "folderOpen"
},
"problemMatcher": []
},
{
"type": "shell",
"label": "Make generate-dev",
"command": "make generate-dev",
"isBackground": true,
"presentation": {
"panel": "dedicated"
},
"runOptions": {
"instanceLimit": 1,
"runOn": "folderOpen"
}
}
]
}