vite-plugin-checker
Version:
Vite plugin that runs TypeScript type checker on a separate process.
10 lines (9 loc) • 456 B
TypeScript
import { DiagnosticLevel } from "../../types.js";
import { NormalizedDiagnostic } from "../../logger.js";
//#region src/checkers/oxlint/cli.d.ts
declare function mapSeverity(s: string): DiagnosticLevel;
declare function getOxlintCommand(command: string): string[];
declare function runOxlint(command: string, cwd: string): Promise<NormalizedDiagnostic[]>;
//#endregion
export { getOxlintCommand, mapSeverity, runOxlint };
//# sourceMappingURL=cli.d.ts.map