We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a46b9f commit 07ae742Copy full SHA for 07ae742
src/lib/getCoverage.ts
@@ -20,12 +20,10 @@ export type CoverageData = {
20
};
21
22
export type Options = Partial<
23
- Pick<
24
- LintOptions,
25
- "strict" | "debug" | "ignoreFiles" | "ignoreCatch" | "tsProjectFile"
26
- > & {
+ Pick<LintOptions, "strict" | "debug" | "ignoreFiles" | "ignoreCatch"> & {
27
cache: LintOptions["enableCache"];
28
ignoreUnread: LintOptions["ignoreUnreadAnys"];
+ tsProjectFile: string;
29
}
30
>;
31
0 commit comments