mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 23:10:29 +00:00
webpack: WatchOptions.ignored accepts string[] (#23214)
https://webpack.js.org/configuration/watch/#watchoptions-ignored https://github.com/micromatch/anymatch
This commit is contained in:
Vendored
+1
-1
@@ -516,7 +516,7 @@ declare namespace webpack {
|
||||
* It is possible to exclude a huge folder like node_modules.
|
||||
* It is also possible to use anymatch patterns.
|
||||
*/
|
||||
ignored?: string | RegExp;
|
||||
ignored?: string | string[] | RegExp;
|
||||
/** Turn on polling by passing true, or specifying a poll interval in milliseconds. */
|
||||
poll?: boolean | number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user