log-watcher-webpack-plugin
Version:
Webpack plugin that outputs changed files to console. This is useful to find out what file changes trigger unexpected recompiles.
15 lines • 350 B
TypeScript
/** @module log-watcher-webpack-plugin
*/
declare module "log-watcher-webpack-plugin" {
/**
* @constructor
* @param {Object} options
*/
export class LogWatcherPlugin {
constructor(options: any);
/**
* @param {import("webpack").Compiler} compiler
*/
apply(compiler: any): void;
}
}