Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
fix: Tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Apr 28, 2022
1 parent fe9c28b commit f511955
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "typecheck:all",
"problemMatcher": ["$tsc"]
"label": "Type-check userscript",
"type": "shell",
"command": [
"yarn",
"typecheck:all"
],
"problemMatcher": [
"$tsc"
]
},
{
"type": "npm",
"script": "userscript:watch",
"label": "Build+watch userscript",
"type": "shell",
"command": [
"yarn",
"userscript:watch"
],
"problemMatcher": [
// See: https://marketplace.visualstudio.com/items?itemName=eamodio.tsl-problem-matcher
"$ts-webpack-watch"
Expand Down

0 comments on commit f511955

Please sign in to comment.