Merge pull request #19013 from bijanvakili/fix-webpack-watchignoreplugin-list

WatchIgnorePlugin constructor should allow array of string paths
This commit is contained in:
Daniel Rosenwasser
2017-08-21 21:27:31 -07:00
committed by GitHub

View File

@@ -919,7 +919,7 @@ declare namespace webpack {
}
class WatchIgnorePlugin extends Plugin {
constructor(paths: RegExp[]);
constructor(paths: Array<string | RegExp>);
}
namespace optimize {