From f07d49679227515cc0fddefdc431cbe72a3b4409 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 17:50:12 +0900 Subject: [PATCH] refactor(react): update include path in tsconfig.json The path to the "lib.tsx" file in the include array in the TypeScript configuration file for the React package, tsconfig.json, has been adjusted for improved clarity and accuracy. --- packages/react/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/tsconfig.json b/packages/react/tsconfig.json index 90d4d94..2f201c8 100644 --- a/packages/react/tsconfig.json +++ b/packages/react/tsconfig.json @@ -28,6 +28,6 @@ "@pswui-lib": ["lib.tsx"] } }, - "include": ["components", "src", "lib"], + "include": ["components", "src", "./lib.tsx"], "references": [{ "path": "./tsconfig.node.json" }] }