Do not check lib type errors

This commit is contained in:
dominik-zeglen 2019-11-05 15:39:47 +01:00
parent 4fbaf65113
commit c6c997a98f

View file

@ -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;
};