diff --git a/scripts/@types/vercel-ncc.d.ts b/scripts/@types/vercel-ncc.d.ts index 58916736..bd2ec10a 100644 --- a/scripts/@types/vercel-ncc.d.ts +++ b/scripts/@types/vercel-ncc.d.ts @@ -24,7 +24,7 @@ declare module '@vercel/ncc' { export interface Options { /** 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[]; @@ -59,7 +59,7 @@ declare module '@vercel/ncc' { export interface OutputResult { code: string; map?: string; - assets: Record; + assets: Record; symlinks: Record; stats: any; }