ts-checker-rspack-plugin
Version:
Runs typescript type checker and linter on separate process.
12 lines (11 loc) • 487 B
TypeScript
import type * as rspack from '@rspack/core';
import type { IssueOptions } from './issue-options';
import type { IssuePredicate } from './issue-predicate';
import type { IssueDefaultSeverity } from './issue-severity';
interface IssueConfig {
predicate: IssuePredicate;
defaultSeverity: IssueDefaultSeverity;
}
declare function createIssueConfig(compiler: rspack.Compiler, options: IssueOptions | undefined): IssueConfig;
export { createIssueConfig };
export type { IssueConfig };