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

50 lines
1.1 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": [
{
"type": "npm",
"script": "start",
2025-06-15 12:33:52 +02:00
"options": {
"env": {
"PORT": "4200",
"services__Vegasco-Server-Api__https__0": "https://localhost:7098",
"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"
}
}
}
}
]
}