From 83d29994c6665ee2adade2f4e854c8a90bfdeec9 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 25 Feb 2025 16:57:13 +0100 Subject: [PATCH] storybook: fix include paths in TypeScript configuration ".storybook/*.tsx" didn't match any file: files in this directory have the .ts extension. Let's just drop the file extension and include all files in this directory. Signed-off-by: Simon Ser --- storybook/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storybook/tsconfig.json b/storybook/tsconfig.json index e35a0a621..7c53ba3f9 100644 --- a/storybook/tsconfig.json +++ b/storybook/tsconfig.json @@ -1,6 +1,6 @@ { "extends": "../tsconfig.base.json", - "include": [".storybook/*.tsx", "stories/**/*"], + "include": [".storybook/**/*", "stories/**/*"], "compilerOptions": { "rootDir": "../", "outDir": "./dist",