UNPKG

vite-plugin-checker

Version:

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

46 lines (43 loc) 2.67 kB
import { SourceLocation } from '@babel/code-frame'; import { DiagnosticLevel, DiagnosticToRuntime, ClientDiagnosticPayload } from './types.js'; import { ESLint } from 'eslint'; import Stylelint__default from 'stylelint'; import { Diagnostic } from 'typescript'; import 'node:worker_threads'; import 'vite'; interface NormalizedDiagnostic { /** error message */ message?: string; /** error conclusion */ conclusion?: string; /** error stack */ stack?: string | string[]; /** file name */ id?: string; /** checker diagnostic source */ checker: string; /** raw code frame generated by @babel/code-frame */ codeFrame?: string; /** code frame, but striped */ stripedCodeFrame?: string; /** error code location */ loc?: SourceLocation; /** error level */ level?: DiagnosticLevel; } declare function filterLogLevel(diagnostics: NormalizedDiagnostic, level?: DiagnosticLevel[]): NormalizedDiagnostic | null; declare function filterLogLevel(diagnostics: NormalizedDiagnostic[], level?: DiagnosticLevel[]): NormalizedDiagnostic[]; declare function diagnosticToTerminalLog(d: NormalizedDiagnostic, name?: 'TypeScript' | 'vue-tsc' | 'ESLint' | 'Stylelint' | 'Biome' | 'oxlint'): string; declare function diagnosticToConsoleLevel(d: NormalizedDiagnostic): "error" | "info" | "warn"; declare function diagnosticToRuntimeError(d: NormalizedDiagnostic): DiagnosticToRuntime; declare function diagnosticToRuntimeError(d: NormalizedDiagnostic[]): DiagnosticToRuntime[]; declare function toClientPayload(id: string, diagnostics: DiagnosticToRuntime[]): ClientDiagnosticPayload; declare function wrapCheckerSummary(checkerName: string, rawSummary: string): string; declare function composeCheckerSummary(checkerName: string, errorCount: number, warningCount: number): string; declare function normalizeTsDiagnostic(d: Diagnostic): NormalizedDiagnostic; declare function normalizeVueTscDiagnostic(d: Diagnostic): NormalizedDiagnostic; declare function normalizeEslintDiagnostic(diagnostic: ESLint.LintResult): NormalizedDiagnostic[]; declare function normalizeStylelintDiagnostic(diagnostic: Stylelint__default.LintResult): NormalizedDiagnostic[]; declare function ensureCall(callback: CallableFunction): void; declare function consoleLog(value: string, level: 'info' | 'warn' | 'error'): void; export { type NormalizedDiagnostic, composeCheckerSummary, consoleLog, diagnosticToConsoleLevel, diagnosticToRuntimeError, diagnosticToTerminalLog, ensureCall, filterLogLevel, normalizeEslintDiagnostic, normalizeStylelintDiagnostic, normalizeTsDiagnostic, normalizeVueTscDiagnostic, toClientPayload, wrapCheckerSummary };