From f11e2fd7415f923e2e5b8845840c0efa527ed466 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rnar=20G=2E=20Hveding?= Date: Tue, 17 Mar 2026 08:51:37 +0100 Subject: [PATCH] fix: add `types` config to `exports` The types definition file isn't found after the recent addition of `exports` to `package.json`. This should fix this. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index aea8f09..1fdc426 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "main": "dist/main.js", "exports": { ".": { + "types": "./index.d.ts", "import": "./index.mjs", "require": "./dist/main.js", "default": "./dist/main.js"