From 7a884b6d51c0aea75d0c8b4c7faf642d925367ac Mon Sep 17 00:00:00 2001 From: auvred <61150013+auvred@users.noreply.github.com> Date: Sat, 30 Dec 2023 13:22:55 +0300 Subject: [PATCH] fix: provide correct types path in conditional exports (#222) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1a3b38d..0f1fa62 100755 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "type": "module", "exports": { ".": { - "types": "./dist/types.d.ts", + "types": "./dist/index.d.ts", "default": "./dist/index.js" } },