From 6d2853f74b2438c9a593ba54441884447ba1f788 Mon Sep 17 00:00:00 2001 From: Sibiraj <20282546+sibiraj-s@users.noreply.github.com> Date: Wed, 16 Nov 2022 20:09:46 +0530 Subject: [PATCH] Fix relative path in exports --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8f3deef..ade98bc 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "main": "./dist/index.cjs", "types": "types.d.ts", "exports": { - "types": "types.d.ts", + "types": "./types.d.ts", "require": "./dist/index.cjs", "import": "./src/index.js", "default": "./src/index.js"