diff options
Diffstat (limited to '')
-rw-r--r-- | examples/vscode-playground/.vscode/tasks.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/examples/vscode-playground/.vscode/tasks.json b/examples/vscode-playground/.vscode/tasks.json new file mode 100644 index 0000000..6178c01 --- /dev/null +++ b/examples/vscode-playground/.vscode/tasks.json @@ -0,0 +1,29 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "compile", + "group": "build", + "presentation": { + "panel": "dedicated", + "reveal": "never" + }, + "problemMatcher": ["$tsc"] + }, + { + "type": "npm", + "script": "watch", + "isBackground": true, + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "panel": "dedicated", + "reveal": "never" + }, + "problemMatcher": ["$tsc-watch"] + } + ] +} |