From 4f1b6969026fd6d094581d78378587e64e55075c Mon Sep 17 00:00:00 2001 From: David Sichau Date: Tue, 18 Apr 2023 11:01:26 +0200 Subject: [PATCH] Update package.json Fixed the path to the types file. --- plugins/store/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/store/package.json b/plugins/store/package.json index 02e5d230..81c607e5 100644 --- a/plugins/store/package.json +++ b/plugins/store/package.json @@ -9,10 +9,10 @@ "type": "module", "browser": "dist-js/index.min.js", "module": "dist-js/index.mjs", - "types": "dist-js/index.d.ts", + "types": "dist-js/dist/index.d.ts", "exports": { "import": "./dist-js/index.mjs", - "types": "./dist-js/index.d.ts", + "types": "./dist-js/dist/index.d.ts", "browser": "./dist-js/index.min.js" }, "scripts": {