From 85d1506b4687a75945c23863bc21bbf20aa788c7 Mon Sep 17 00:00:00 2001 From: Adrien Cacciaguerra Date: Mon, 22 Jul 2024 12:41:50 +0200 Subject: [PATCH] fix(vitest-plugin): ensure typings are found when using exports Fix #34 --- packages/vitest-plugin/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/vitest-plugin/package.json b/packages/vitest-plugin/package.json index ec31420..ae38096 100644 --- a/packages/vitest-plugin/package.json +++ b/packages/vitest-plugin/package.json @@ -12,6 +12,7 @@ "types": "./dist/index.d.ts", "exports": { ".": { + "types": "./dist/index.d.ts", "import": "./dist/index.mjs" } },