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.
This commit is contained in:
giancarlo
2024-04-22 00:56:05 +08:00
parent 0a28e22eb1
commit 75c438a5f2

View File

@@ -22,7 +22,7 @@
"*.tsx",
"*.mjs",
"./config/**/*.ts",
"components/**/*.{tsx|ts}",
"components/**/*",
"lib/**/*.ts",
"app"
],