From 75c438a5f2a34f9b1a1a34b41dc5169882de13ba Mon Sep 17 00:00:00 2001 From: giancarlo Date: Mon, 22 Apr 2024 00:56:05 +0800 Subject: [PATCH] Update file inclusion in tsconfig.json This update modifies the tsconfig.json in the web app. It changes the file inclusion from specific '.tsx' and '.ts' files in 'components' to all files within the 'components' directory. This change will enhance the efficiency of TypeScript configuration. --- apps/web/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index e795af41f..532c69e7a 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -22,7 +22,7 @@ "*.tsx", "*.mjs", "./config/**/*.ts", - "components/**/*.{tsx|ts}", + "components/**/*", "lib/**/*.ts", "app" ],