From 37925095219937c55a8e5b0bf5e057d9fbbb71bb Mon Sep 17 00:00:00 2001 From: Nina Pypchenko <22447785+nina-py@users.noreply.github.com> Date: Fri, 27 Nov 2020 04:00:13 +1100 Subject: [PATCH] Update tsconfig file to include .tsx files (#2457) --- framework/core/js/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/tsconfig.json b/framework/core/js/tsconfig.json index 7b14ec0ae..6503899f8 100644 --- a/framework/core/js/tsconfig.json +++ b/framework/core/js/tsconfig.json @@ -1,5 +1,5 @@ { - "include": ["src/**/*.ts"], + "include": ["src/**/*.ts", "src/**/*.tsx"], "files": ["shims.d.ts"], "compilerOptions": { "allowUmdGlobalAccess": true,