UNPKG

ts-checker-rspack-plugin

Version:

Runs typescript type checker and linter on separate process.

16 lines (15 loc) 666 B
import type { Compiler } from '@rspack/core'; import type { TsCheckerRspackPluginState } from '../plugin-state'; import type { WatchFileSystem } from './watch-file-system'; declare class InclusiveNodeWatchFileSystem implements WatchFileSystem { private watchFileSystem; private compiler; private pluginState; get watcher(): import("./watch-file-system").Watchpack | undefined; private readonly dirsWatchers; private paused; private deletedFiles; constructor(watchFileSystem: WatchFileSystem, compiler: Compiler, pluginState: TsCheckerRspackPluginState); watch: WatchFileSystem['watch']; } export { InclusiveNodeWatchFileSystem };