Skip to content

Commit

Permalink
@types: fix issues with @vercel/ncc types
Browse files Browse the repository at this point in the history
  • Loading branch information
auguwu committed Feb 19, 2024
1 parent 87c7dfc commit 850bd19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/@types/vercel-ncc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
declare module '@vercel/ncc' {
export interface Options<Watch extends boolean = false> {
/** Custom cache path, or `false` to disable caching */
cache?: string | false;
cache?: false | string;

/** External packages to leave as required of the build */
externals?: string[];
Expand Down Expand Up @@ -59,7 +59,7 @@ declare module '@vercel/ncc' {
export interface OutputResult {
code: string;
map?: string;
assets: Record<string, { source: Buffer; permissions?: any }>;
assets: Record<string, { permissions?: any; source: Buffer }>;
symlinks: Record<string, any>;
stats: any;
}
Expand Down

0 comments on commit 850bd19

Please sign in to comment.