Skip to content

Commit

Permalink
vscode: improve watch mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Nov 19, 2018
1 parent ca53393 commit b8a47fe
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
]
}

0 comments on commit b8a47fe

Please sign in to comment.