Files
vegasco/src/Vegasco-Web/.vscode/tasks.json

64 lines
1.4 KiB
JSON
Raw Normal View History

2025-06-13 19:48:07 +02:00
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
2025-06-19 19:00:40 +02:00
{
"label": "Terminate All Tasks",
"command": "echo ${input:terminate}",
"type": "shell",
"problemMatcher": []
},
2025-06-13 19:48:07 +02:00
{
"type": "npm",
"script": "start",
2025-06-15 12:33:52 +02:00
"options": {
"env": {
"PORT": "44200",
"services__Api__https__0": "https://localhost:7098",
2025-06-15 12:33:52 +02:00
"NODE_ENV": "development"
}
},
2025-06-13 19:48:07 +02:00
"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"
}
}
}
}
2025-06-19 19:00:40 +02:00
],
"inputs": [
{
"id": "terminate",
"type": "command",
"command": "workbench.action.tasks.terminate",
"args": "terminateAll"
}
2025-06-13 19:48:07 +02:00
]
}