paths-filter/.vscode/tasks.json
2025-08-19 14:04:51 +02:00

33 lines
518 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "npm",
"script": "build",
"group": "build"
},
{
"label": "npm: format",
"type": "npm",
"script": "format"
},
{
"label": "npm: lint",
"type": "npm",
"script": "lint"
},
{
"label": "npm: test",
"type": "npm",
"script": "test",
"group": "test"
},
{
"label": "npm: all",
"type": "npm",
"script": "all"
}
]
}