From e5c5f37d577bc76cc78e55210a51fbd806920683 Mon Sep 17 00:00:00 2001 From: Eugene Kim Date: Sat, 20 Jul 2024 15:57:53 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20export=20=ED=83=80=EC=9E=85=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/wow-ui/src/types/index.ts | 7 ++++++- tsconfig.json | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/wow-ui/src/types/index.ts b/packages/wow-ui/src/types/index.ts index b280a6fb..74b1458c 100644 --- a/packages/wow-ui/src/types/index.ts +++ b/packages/wow-ui/src/types/index.ts @@ -1,2 +1,7 @@ -export * from "./Button"; +export type { + BasicButtonProps, + ButtonElementType, + MenuButtonProps, + ToggleButtonProps, +} from "./Button"; export * from "./Polymorphic"; diff --git a/tsconfig.json b/tsconfig.json index 0f80cfd6..f0b37330 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,7 @@ "resolveJsonModule": true, "skipLibCheck": true, "strict": true, + "jsx": "react-jsx", "target": "ES2022" } }