Skip to content

Commit

Permalink
Merge pull request #7658 from artsy/damassi/fix-storybooks
Browse files Browse the repository at this point in the history
fix: [Storybooks] Fix deploy issue due to ts 4.3.x incompatibility
  • Loading branch information
damassi authored May 28, 2021
2 parents 3ce932b + dd8b948 commit dcf6cc8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
module.exports = {
stories: ["../src/**/*.story.tsx"],
addons: ["@storybook/addon-links", "@storybook/addon-essentials"],
stories: ["../src/**/*.story.tsx"],

typescript: {
// Disable docgeneration due to TypeScript 2.3.x incompatability.
// TODO: Fix this once https://github.com/styleguidist/react-docgen-typescript/issues/356
// is addressed
reactDocgen: "none",
},

webpackFinal: async config => {
config.stats = "errors-only"
Expand Down

0 comments on commit dcf6cc8

Please sign in to comment.