Skip to content

Commit

Permalink
storybook: fix include paths in TypeScript configuration
Browse files Browse the repository at this point in the history
".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 <[email protected]>
  • Loading branch information
emersion committed Feb 26, 2025
1 parent 3b12079 commit 83d2999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storybook/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "../tsconfig.base.json",
"include": [".storybook/*.tsx", "stories/**/*"],
"include": [".storybook/**/*", "stories/**/*"],
"compilerOptions": {
"rootDir": "../",
"outDir": "./dist",
Expand Down

0 comments on commit 83d2999

Please sign in to comment.