From 47007fcfcdf962b43c50cb038990402d9fcbe0f9 Mon Sep 17 00:00:00 2001 From: lloyd tabb Date: Tue, 12 Mar 2024 10:23:01 -0700 Subject: [PATCH] try again to fix compiler watch (#1654) --- .vscode/tasks.json | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ec3b47a6d..05033d424 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,18 +5,14 @@ "tasks": [ { "type": "typescript", - "tsconfig": "tsconfig.compile-no-emit.json", + "tsconfig": "packages/malloy/tsconfig.json", "option": "watch", - "problemMatcher": ["$tsc-watch"], + "problemMatcher": [ + "$tsc-watch" + ], "group": "build", - "label": "tsc-compile-watch", - "runOptions": { "runOn": "folderOpen" }, - "presentation": { - "reveal": "silent", - "revealProblems": "never", - "close": true, - "focus": false - } + "label": "tsc: watch - packages/malloy/tsconfig.json", + "runOptions": { "runOn": "folderOpen" } } ] }