From 1e3220aef5bb63afbe1089993db430798d027316 Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Fri, 10 Jul 2026 16:33:41 +0200 Subject: [PATCH] fix(core-ui): stop excluding Storybook stories from typecheck MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit *.stories.tsx / *.stories.ts were excluded from tsconfig, so story files never typechecked and could drift against component props silently. Include them (they already typecheck cleanly); build is tsc --noEmit so nothing new is emitted. The Select scrollIntoView port from the downstream fork does not apply — this tree has no Select atom. Co-Authored-By: Claude Fable 5 --- packages/core-ui/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core-ui/tsconfig.json b/packages/core-ui/tsconfig.json index 741720b..d78a18f 100644 --- a/packages/core-ui/tsconfig.json +++ b/packages/core-ui/tsconfig.json @@ -9,5 +9,5 @@ } }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist", "**/*.stories.tsx", "**/*.stories.ts"] + "exclude": ["node_modules", "dist"] }