Projektmanagement-Tool/.vscode/tasks.json
2025-05-03 21:28:33 +02:00

56 lines
1.2 KiB
JSON

{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"label": "build-angular",
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": []
},
{
"label": "start-angular",
"type": "npm",
"script": "start",
"group": "build",
"problemMatcher": []
}
]
}