Skip to content

Commit 3dd2b4b

Browse files
committed
fix: add disableGlobbing option back
1 parent d883a1a commit 3dd2b4b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

types/lib/Server.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1484,7 +1484,9 @@ type StatsCompilation = import("webpack").StatsCompilation;
14841484
type Stats = import("webpack").Stats;
14851485
type MultiStats = import("webpack").MultiStats;
14861486
type NetworkInterfaceInfo = import("os").NetworkInterfaceInfo;
1487-
type WatchOptions = import("chokidar").ChokidarOptions;
1487+
type WatchOptions = import("chokidar").ChokidarOptions & {
1488+
disableGlobbing?: boolean;
1489+
};
14881490
type FSWatcher = import("chokidar").FSWatcher;
14891491
type ConnectHistoryApiFallbackOptions =
14901492
import("connect-history-api-fallback").Options;
@@ -1573,6 +1575,8 @@ type WatchFiles = {
15731575
}>;
15741576
}
15751577
> & {
1578+
disableGlobbing?: boolean;
1579+
} & {
15761580
aggregateTimeout?: number;
15771581
ignored?: WatchOptions["ignored"];
15781582
poll?: number | boolean;
@@ -1613,6 +1617,8 @@ type Static = {
16131617
}>;
16141618
}
16151619
> & {
1620+
disableGlobbing?: boolean;
1621+
} & {
16161622
aggregateTimeout?: number;
16171623
ignored?: WatchOptions["ignored"];
16181624
poll?: number | boolean;

0 commit comments

Comments
 (0)