a11yist/.vscode/tasks.json

23 lines
457 B
JSON
Raw Normal View History

2024-07-22 21:47:06 +02:00
{
"version": "2.0.0",
"tasks": [
{
2024-09-05 22:54:38 +02:00
"type": "process",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": false,
"revealProblems": "always",
"group": "dev",
"close": true
},
2024-07-22 21:47:06 +02:00
"command": "dev",
"label": "dev",
2024-09-05 22:54:38 +02:00
"isBackground": true,
2024-10-31 23:13:18 +01:00
"problemMatcher": []
2024-07-22 21:47:06 +02:00
}
]
}