From 38c131a270be500266a6d713dd032c344805df00 Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Thu, 13 May 2021 16:40:19 +0000 Subject: [PATCH] Add a tasks.json This is just a helpful way to ensure you can run `tsc --watch` from inside vscode. --- .vscode/tasks.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..32a6e4c00 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,15 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "typescript", + "tsconfig": "tsconfig.json", + "option": "watch", + "problemMatcher": [ + "$tsc-watch" + ], + "group": "build", + "label": "tsc: watch - tsconfig.json" + } + ] +} \ No newline at end of file