fix(core): update

This commit is contained in:
Philipp Kunz 2022-01-19 17:59:07 +01:00
parent 8708b1442d
commit 5128d450bc

View File

@ -44,7 +44,10 @@ export const mergeCompilerOptions = (
// create merged options
const mergedOptions: CompilerOptions = {
...defaultOptionsToMerge,
...customTsOptions
...customTsOptions,
...argvArg && argvArg.skiplibcheck ? {
skipLibCheck: true
} : {},
};
return mergedOptions;