ts-checker-rspack-plugin
Version:
Runs typescript type checker and linter on separate process.
10 lines (9 loc) • 373 B
TypeScript
import type { Formatter, FormatterPathType } from './formatter';
import type { FormatterOptions } from './formatter-options';
type FormatterConfig = {
format: Formatter;
pathType: FormatterPathType;
};
declare function createFormatterConfig(options: FormatterOptions | undefined): FormatterConfig;
export { createFormatterConfig };
export type { FormatterConfig };