From 577b4b4286d2d909c87d8b027bb073c6e8a1ae0d Mon Sep 17 00:00:00 2001 From: kleinfreund Date: Thu, 23 Nov 2023 21:59:44 +0100 Subject: [PATCH] fix: cannot find module TypeScript error Adds the types field back to the package.json file to prevent the "Cannot find module 'vue-accessible-color-picker' or its corresponding type declarations." error. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 9006d78..7dbb467 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ }, "./styles": "./dist/ColorPicker.css" }, + "types": "./dist/ColorPicker.d.ts", "files": [ "dist/ColorPicker.css", "dist/ColorPicker.d.ts",