fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
9 lines (8 loc) • 343 B
TypeScript
import type { IssueMatch } from './issue-match';
import type { IssuePredicate } from './issue-predicate';
type IssuePredicateOption = IssuePredicate | IssueMatch | (IssuePredicate | IssueMatch)[];
interface IssueOptions {
include?: IssuePredicateOption;
exclude?: IssuePredicateOption;
}
export { IssueOptions, IssuePredicateOption };