From fa81e89643523170047ca2c9a690f4d7adf4ffdc Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Thu, 4 Jul 2024 21:24:19 +0530 Subject: [PATCH] refactor: consistent type assertion --- src/node/build/bundle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/build/bundle.ts b/src/node/build/bundle.ts index bb9c4a72..f0305fd0 100644 --- a/src/node/build/bundle.ts +++ b/src/node/build/bundle.ts @@ -44,7 +44,7 @@ export async function bundle( pageToHashMap: Record }> { const pageToHashMap = Object.create(null) as Record - const clientJSMap = Object.create(null) + const clientJSMap = Object.create(null) as Record // define custom rollup input // this is a multi-entry build - every page is considered an entry chunk