Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Baeumer <dirkb@microsoft.com>2018-07-03 12:37:32 +0300
committerDirk Baeumer <dirkb@microsoft.com>2018-07-03 13:13:28 +0300
commite79e446e90a8699ef1a7978d968fd37cf8829d61 (patch)
tree96ab19dc7a0ee57ec1da93dbfb7fc16fed9738d2 /src/tsconfig.json
parent08388a54f1f80e6c8b929af0b1c57c8f5336e0a3 (diff)
Exclude all build folders to make the TS file watcher calm
Diffstat (limited to 'src/tsconfig.json')
-rw-r--r--src/tsconfig.json7
1 files changed, 6 insertions, 1 deletions
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"
+ ]
}