UNPKG

ts-checker-rspack-plugin

Version:

Runs typescript type checker and linter on separate process.

9 lines (8 loc) 366 B
import type * as rspack from '@rspack/core'; import type { IssueOptions } from './issue-options'; import type { IssuePredicate } from './issue-predicate'; interface IssueConfig { predicate: IssuePredicate; } declare function createIssueConfig(compiler: rspack.Compiler, options: IssueOptions | undefined): IssueConfig; export { IssueConfig, createIssueConfig };