From 3b1d6ac6d6d8d0a65997d598d44f9fb91c182b0a Mon Sep 17 00:00:00 2001 From: Frank Collins Date: Fri, 26 May 2023 20:07:31 -0400 Subject: [PATCH] fix issue #48 allow TS Imports [8:07pm] --- client/tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/tsconfig.json b/client/tsconfig.json index 390a399..831b512 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -13,7 +13,8 @@ "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, - "jsx": "react" + "jsx": "react", + "allowImportingTsExtensions": true }, "include": ["src"] - } \ No newline at end of file + }