From e969d94599b4e1036c7f94eada29e11cec2da302 Mon Sep 17 00:00:00 2001 From: William Brawner Date: Tue, 30 Jun 2020 04:11:32 +0000 Subject: [PATCH] Add tasks.json Signed-off-by: William Brawner --- tasks.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 tasks.json diff --git a/tasks.json b/tasks.json new file mode 100644 index 0000000..7c07453 --- /dev/null +++ b/tasks.json @@ -0,0 +1,38 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "start", + "isBackground": true, + "presentation": { + "focus": true, + "panel": "dedicated" + }, + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": { + "owner": "typescript", + "source": "ts", + "applyTo": "closedDocuments", + "fileLocation": [ + "relative", + "${cwd}" + ], + "pattern": "$tsc", + "background": { + "activeOnStart": true, + "beginsPattern": { + "regexp": "(.*?)" + }, + "endsPattern": { + "regexp": "Compiled |Failed to compile." + } + } + } + } + ] + } + \ No newline at end of file