arti-angular-app/.vscode/tasks.json

64 lines
1.4 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"
}
}
}
},
{
"type": "java (build)",
"paths": [
"${workspace}"
],
"isFullBuild": true,
"group": "build",
"problemMatcher": [],
"label": "java (build): Build Workspace",
"detail": "$(tools) Build all the Java projects in workspace."
},
{
"label": "Start Angular Server",
"type": "shell",
"command": "ng serve --port 4202 --host 0.0.0.0",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}