diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-20 13:54:52 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-20 13:54:52 +0530 |
commit | 4c296c9c5f5bf10f4c3d61d84a354749b302a18a (patch) | |
tree | 90ad1ef2be8b6f5296b29c29d66f239f21d13239 /.vscode/tasks.json | |
parent | 57000c22141afde7eb7b13ccbd16f06d6b6eb5cd (diff) |
add typescript build task
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0799db9a2..00c61e8a4 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,11 +5,14 @@ "tasks": [ { "type": "typescript", - "tsconfig": "tsconfig.json", + "tsconfig": "tsconfig.build.json", "problemMatcher": [ "$tsc" ], - "group": "build" + "group": { + "kind": "build", + "isDefault": true, + }, } ] }
\ No newline at end of file |