From 58ec231a812ab0ee8ff0311293dc935c67d6115f Mon Sep 17 00:00:00 2001 From: Lee McMullen Date: Mon, 11 Mar 2019 13:11:22 +0000 Subject: [PATCH] Add TypeScript ContentType to `SourceFileCreationListener.cs` in order to fix issue where jsx and js files were not auto re-compiling. --- src/WebCompilerVsix/FileListeners/SourceFileCreationListener.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/WebCompilerVsix/FileListeners/SourceFileCreationListener.cs b/src/WebCompilerVsix/FileListeners/SourceFileCreationListener.cs index ab7d789d..6c5c08e9 100644 --- a/src/WebCompilerVsix/FileListeners/SourceFileCreationListener.cs +++ b/src/WebCompilerVsix/FileListeners/SourceFileCreationListener.cs @@ -17,6 +17,7 @@ namespace WebCompilerVsix.Listeners [ContentType("Iced")] [ContentType("jsx")] [ContentType("javascript")] + [ContentType("TypeScript")] [ContentType(SassContentTypeDefinition.SassContentType)] [ContentType(HandlebarsContentTypeDefinition.HandleBarsContentType)] [ContentType(HBSContentTypeDefinition.HBSContentType)]