File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1484,7 +1484,9 @@ type StatsCompilation = import("webpack").StatsCompilation;
1484
1484
type Stats = import ( "webpack" ) . Stats ;
1485
1485
type MultiStats = import ( "webpack" ) . MultiStats ;
1486
1486
type NetworkInterfaceInfo = import ( "os" ) . NetworkInterfaceInfo ;
1487
- type WatchOptions = import ( "chokidar" ) . ChokidarOptions ;
1487
+ type WatchOptions = import ( "chokidar" ) . ChokidarOptions & {
1488
+ disableGlobbing ?: boolean ;
1489
+ } ;
1488
1490
type FSWatcher = import ( "chokidar" ) . FSWatcher ;
1489
1491
type ConnectHistoryApiFallbackOptions =
1490
1492
import ( "connect-history-api-fallback" ) . Options ;
@@ -1573,6 +1575,8 @@ type WatchFiles = {
1573
1575
} > ;
1574
1576
}
1575
1577
> & {
1578
+ disableGlobbing ?: boolean ;
1579
+ } & {
1576
1580
aggregateTimeout ?: number ;
1577
1581
ignored ?: WatchOptions [ "ignored" ] ;
1578
1582
poll ?: number | boolean ;
@@ -1613,6 +1617,8 @@ type Static = {
1613
1617
} > ;
1614
1618
}
1615
1619
> & {
1620
+ disableGlobbing ?: boolean ;
1621
+ } & {
1616
1622
aggregateTimeout ?: number ;
1617
1623
ignored ?: WatchOptions [ "ignored" ] ;
1618
1624
poll ?: number | boolean ;
You can’t perform that action at this time.
0 commit comments