UNPKG

461 BTypeScriptView Raw
1/**
2 * @additionalProperties true
3 */
4export interface WebpackWatchOptions {
5 /**
6 * Add a delay in milliseconds before rebuilding once the first file changed.
7 */
8 aggregateTimeout?: number;
9 /**
10 * Ignore pattern to exclude a huge folder like node_modules.
11 */
12 ignored?: string;
13 /**
14 * Turn on polling by passing true, or specifying a poll interval in milliseconds.
15 */
16 poll?: boolean | number;
17}