diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a24e803..f0ac0ec 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -15,18 +15,24 @@ }, { "type": "npm", - "script": "compile:watch", + "script": "webui", "problemMatcher": [] }, { "type": "npm", - "script": "webui", + "script": "server", "problemMatcher": [] }, { "type": "npm", - "script": "server", - "problemMatcher": [] + "script": "compile", + "problemMatcher": ["$tsc"] + }, + { + "type": "npm", + "script": "compile:watch", + "problemMatcher": ["$tsc-watch"], + "isBackground": true } ] }