From 2573b4d9107b77b625a8509295e88ca532e77ae6 Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Mon, 7 Jul 2025 11:57:14 -0500 Subject: [PATCH] Fix exports reference to typings Recent TypeScript versions don't work without having this "types" property in the exports field. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 73c93ea4..9a686176 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "main": "./lib/cjs/index.js", "exports": { ".": { + "types": "./typings.d.ts", "require": "./lib/cjs/index.js", "default": "./lib/esm/index.mjs" }