UNPKG

fork-ts-checker-webpack-plugin

Version:
17 lines (16 loc) 1.06 kB
import type * as ts from 'typescript'; import { Issue } from '../../issue'; import { FilesMatch } from '../../reporter'; interface TypeScriptHostExtension { extendWatchSolutionBuilderHost?<TProgram extends ts.BuilderProgram, THost extends ts.SolutionBuilderWithWatchHost<TProgram>>(host: THost, parsedCommandLine?: ts.ParsedCommandLine): THost; extendWatchCompilerHost?<TProgram extends ts.BuilderProgram, THost extends ts.WatchCompilerHost<TProgram>>(host: THost, parsedCommandLine?: ts.ParsedCommandLine): THost; extendCompilerHost?<THost extends ts.CompilerHost>(host: THost, parsedCommandLine?: ts.ParsedCommandLine): THost; extendParseConfigFileHost?<THost extends ts.ParseConfigFileHost>(host: THost): THost; } interface TypeScriptReporterExtension { extendIssues?(issues: Issue[]): Issue[]; extendDependencies?(dependencies: FilesMatch): FilesMatch; } interface TypeScriptExtension extends TypeScriptHostExtension, TypeScriptReporterExtension { } export { TypeScriptExtension, TypeScriptReporterExtension, TypeScriptHostExtension };