From eaca753cef18c78f9a34015ed18e54075230c5b5 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Thu, 30 Nov 2023 18:27:36 -0800 Subject: [PATCH] remove as any --- src/rollup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rollup.ts b/src/rollup.ts index fce07b497..a0599257e 100644 --- a/src/rollup.ts +++ b/src/rollup.ts @@ -17,7 +17,7 @@ export async function rollupClient(clientPath = getClientPath(), {minify = false : null; } }, - (esbuild as any)({minify}) + esbuild({minify}) ] }); try {