interface WatcherOptions {
    buildDelay?: number;
    chokidar?: ChokidarOptions;
    clearScreen?: boolean;
    exclude?: string | RegExp | (string | RegExp)[];
    include?: string | RegExp | (string | RegExp)[];
    skipWrite?: boolean;
}

Properties

buildDelay?: number
chokidar?: ChokidarOptions
clearScreen?: boolean
exclude?: string | RegExp | (string | RegExp)[]
include?: string | RegExp | (string | RegExp)[]
skipWrite?: boolean