Bugfix/fix storybook setup (#1976)

* Fix Storybook setup

* Update changelog
This commit is contained in:
Thomas Kaul
2023-05-18 17:51:38 +02:00
committed by GitHub
parent edd690850c
commit 7fc3fff431
10 changed files with 107 additions and 299 deletions

View File

@ -3,6 +3,14 @@
"compilerOptions": {
"emitDecoratorMetadata": true
},
"exclude": ["../**/*.spec.ts", "../**/*.test.ts", "jest.config.ts"],
"include": ["../src/**/*", "*.js"]
"exclude": ["../**/*.spec.ts"],
"include": [
"../src/**/*.stories.mdx",
"../src/**/*.stories.js",
"../src/**/*.stories.jsx",
"../src/**/*.stories.ts",
"../src/**/*.stories.tsx",
"*.js"
]
}