fix: adjust command of typedoc (upgrade typescript)

This commit is contained in:
Jovan Krunić
2021-09-13 16:40:49 +02:00
parent c40ceef039
commit 7d396f9202
3 changed files with 8 additions and 6 deletions

View File

@@ -521,7 +521,7 @@ ${stringify(completeEntry)}`);
}
}
} catch (error) {
consoleWarn(`Could not parse ${pathToCiConfig} because of '${error.message}'.
consoleWarn(`Could not parse ${pathToCiConfig} because of '${(error as Error).message}'.
Please ensure consistency of CI config manually.
${stringify(rules.ciConfig)}`);
}
@@ -795,6 +795,8 @@ export function getRules(configuration: Configuration): Rules {
join('templates', '.npmignore'),
);
} else {
// tslint:disable-next-line:ban-ts-ignore
// @ts-ignore
delete ciConfig[`package`];
}