Do not check lib type errors
This commit is contained in:
parent
4fbaf65113
commit
c6c997a98f
1 changed files with 7 additions and 1 deletions
|
@ -24,6 +24,12 @@ module.exports = ({ config }) => {
|
||||||
configFile: "./tsconfig.json"
|
configFile: "./tsconfig.json"
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
config.plugins.push(new CheckerPlugin());
|
config.plugins.push(
|
||||||
|
new CheckerPlugin({
|
||||||
|
compilerOptions: {
|
||||||
|
skipLibCheck: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
return config;
|
return config;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue