import { WatchOptions } from 'chokidar'; export interface IWatcherPublicConfig { chokidarOptions?: WatchOptions; enabled?: boolean; ignore?: Array; include?: Array; /** * The root folder(s) to watch * Passed to chokidar as paths */ root?: string | string[]; }