advent22/ui/.vscode/tasks.json

24 lines
397 B
JSON
Raw Permalink Normal View History

2023-11-21 22:25:12 +00:00
{
2024-08-27 00:25:42 +00:00
"version": "2.0.0",
"tasks": [
{
"type": "npm",
2026-02-22 01:31:07 +00:00
"script": "dev",
2024-08-27 00:25:42 +00:00
"problemMatcher": [],
2026-02-22 01:31:07 +00:00
"label": "UI starten"
},
{
"type": "npm",
"script": "lint",
"problemMatcher": ["$eslint-compact"],
"label": "Linter"
},
{
"type": "npm",
"script": "format",
"problemMatcher": [],
"label": "Formatter"
2024-08-27 00:25:42 +00:00
}
]
}