data.home-assistant/.vscode/tasks.json

23 lines
495 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Generate",
"type": "shell",
"command": "yarn build",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Preview",
"type": "shell",
"command": "yarn start",
"group": {
"kind": "test",
"isDefault": true,
}
},
]
}