From c6c997a98f8ff27d937a58510b65f572d3e4bf65 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Tue, 5 Nov 2019 15:39:47 +0100 Subject: [PATCH] Do not check lib type errors --- src/storybook/webpack.config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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; };