diff --git a/src/storybook/webpack.config.js b/src/storybook/webpack.config.js index 9c94ff6cb..a36720f2e 100644 --- a/src/storybook/webpack.config.js +++ b/src/storybook/webpack.config.js @@ -24,6 +24,12 @@ module.exports = ({ config }) => { configFile: "./tsconfig.json" }) ]; - config.plugins.push(new CheckerPlugin()); + config.plugins.push( + new CheckerPlugin({ + compilerOptions: { + skipLibCheck: true + } + }) + ); return config; };