From b600414d9d0a48e5fecd38938bbefd8c0309a011 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 11 May 2021 17:14:40 +0000 Subject: [PATCH] Fix broken problem-matchers --- .vscode/tasks.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f3dd7dc..6dc0195 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -34,17 +34,17 @@ { "base": "$gulp-tsc", "background": { - "activeOnStart": false, - "beginsPattern": "^(Starting compilation in watch mode|File change detected. Starting incremental compilation)", - "endsPattern": "^Found \\d+ errors. Watching for file changes." + "activeOnStart": true, + "beginsPattern": "(Starting compilation in watch mode|File change detected. Starting incremental compilation)", + "endsPattern": "Found \\d+ errors. Watching for file changes." } }, { "base": "$node-sass", "background": { - "activeOnStart": false, - "beginsPattern": "^Rebuilding scss-code.", - "endsPattern": "^Rebuilding scss-code finished." + "activeOnStart": true, + "beginsPattern": "Rebuilding scss-code.", + "endsPattern": "Rebuilding scss-code finished." } } ],