Skip to content

Commit

Permalink
fix: make all overlay options optional (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstaley authored Nov 8, 2024
1 parent e7a497a commit 5b34bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export type PluginOptions = {
* Modify the behavior of the error overlay.
* @default false
*/
overlay?: boolean | OverlayOptions;
overlay?: boolean | Partial<OverlayOptions>;
};

export interface NormalizedPluginOptions extends Required<PluginOptions> {
Expand Down

0 comments on commit 5b34bc0

Please sign in to comment.