webpack: WatchOptions.ignored accepts string[] (#23214)

https://webpack.js.org/configuration/watch/#watchoptions-ignored
https://github.com/micromatch/anymatch
This commit is contained in:
Oliver Joseph Ash
2018-01-26 09:01:36 -08:00
committed by Andy
parent 20122e2888
commit 39150f4ac8
+1 -1
View File
@@ -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;
}