fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
6 lines (5 loc) • 395 B
TypeScript
import type * as webpack from 'webpack';
import type { ForkTsCheckerWebpackPluginConfig } from '../plugin-config';
import type { ForkTsCheckerWebpackPluginState } from '../plugin-state';
declare function interceptDoneToGetDevServerTap(compiler: webpack.Compiler, config: ForkTsCheckerWebpackPluginConfig, state: ForkTsCheckerWebpackPluginState): void;
export { interceptDoneToGetDevServerTap };