From f9a0fee98a836d2ea4caadfd80fcddabe5372936 Mon Sep 17 00:00:00 2001 From: TJ VanToll Date: Wed, 19 Oct 2016 10:35:11 -0400 Subject: [PATCH] =?UTF-8?q?Only=20exclude=20JS=20files=20when=20there?= =?UTF-8?q?=E2=80=99s=20a=20corresponding=20TS=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e67d6ff3..42fce956 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,7 @@ // Place your settings in this file to overwrite default and user settings. { "files.exclude": { - "**/*.js": true, - "**/*.js.map": true + "**/*.js": { "when": "$(basename).ts" }, + "**/*.map": { "when": "$(basename).map" } } } \ No newline at end of file