From e79e446e90a8699ef1a7978d968fd37cf8829d61 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Tue, 3 Jul 2018 11:37:32 +0200 Subject: [PATCH] Exclude all build folders to make the TS file watcher calm --- src/tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index d2b9e229c4a..408cad4917b 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -18,5 +18,10 @@ "typeRoots": [ "typings" ] - } + }, + "exclude": [ + "../out", + "../out-build", + "../out-vscode" + ] }