From 850bd198383d82bc83402040533607922a96a551 Mon Sep 17 00:00:00 2001 From: Noel Date: Sun, 18 Feb 2024 23:57:50 -0800 Subject: [PATCH] `@types`: fix issues with `@vercel/ncc` types --- scripts/@types/vercel-ncc.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }