UNPKG

vite-plugin-checker

Version:

Vite plugin that runs TypeScript type checker on a separate process.

12 lines (11 loc) 419 B
import { DiagnosticLevel, OxlintConfig } from "../../types.js"; //#region src/checkers/oxlint/options.d.ts interface ResolvedOptions { watchTarget: string | string[]; logLevel?: DiagnosticLevel[]; command: string; } declare function resolveOptions(root: string, config: Exclude<OxlintConfig, false>): ResolvedOptions; //#endregion export { ResolvedOptions, resolveOptions }; //# sourceMappingURL=options.d.ts.map