From d44b29c8d685c631726428d9d4d985fc6c3b76d0 Mon Sep 17 00:00:00 2001 From: Ahmed Elsakaan Date: Sun, 23 Jun 2024 03:28:03 +0300 Subject: [PATCH] chore(ui): include .storybook folder in tsconfig --- packages/ui/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index 22fc339..83ab715 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -6,6 +6,6 @@ "@/*": ["src/*"] } }, - "include": ["**/*.ts", "**/*.tsx", "**/*.js"], + "include": ["**/*.ts", "**/*.tsx", "**/*.js", ".storybook/**/*"], "exclude": ["node_modules", "dist", "storybook-static"] }