Files
vegasco/src/Vegasco-Web/.vscode/tasks.json
ThompsonNye 9fb0f584a6
All checks were successful
continuous-integration/drone/push Build is passing
Update launch configurations
2025-06-15 12:33:52 +02:00

50 lines
1.1 KiB
JSON

{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"options": {
"env": {
"PORT": "4200",
"services__Vegasco-Server-Api__https__0": "https://localhost:7098",
"NODE_ENV": "development"
}
},
"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"
}
}
}
}
]
}