From d24743ee6562b57e85195fd9e012d70239f9301c Mon Sep 17 00:00:00 2001 From: Goldman Kim Date: Tue, 17 Dec 2024 15:31:15 +0900 Subject: [PATCH] Update tsconfig.json to include type definitions Removed the redundant "exclude" directive for type definitions, ensuring the types are now properly included. This change improves type resolution and aligns the configuration with the intended usage of the project. --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 83c38910..d90175d9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,6 @@ "strict": true, "types": ["js/natural_js/@types"] }, - "exclude": ["js/natural_js/@types"], "watchOptions": { "watchFile": "useFsEvents", "watchDirectory": "useFsEvents",