From 0febaae766a6dc000a1a47e747d0da6a3a15bb1f Mon Sep 17 00:00:00 2001 From: Mqxx <62719703+Mqxx@users.noreply.github.com> Date: Thu, 10 Sep 2026 16:21:23 +0200 Subject: [PATCH] fix: as const --- jsr/src/bin/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsr/src/bin/index.ts b/jsr/src/bin/index.ts index 56cc20c..3f0a7dc 100644 --- a/jsr/src/bin/index.ts +++ b/jsr/src/bin/index.ts @@ -102,6 +102,6 @@ const x86_64 = { * runtime-specific FFI adapters. */ ffi: x86_64ffi, -}; +} as const; export { x86_64 };