From 8169ba88bcd9e1d777d8823e8f155c084a818314 Mon Sep 17 00:00:00 2001 From: Boris Dalstein Date: Fri, 6 Dec 2024 10:40:50 +0100 Subject: [PATCH] Fix missing 'exports.types' field of package.json --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e49fe07..c9ed439 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,8 @@ "exports": { ".": { "import": "./build/threejs-math.module.js", - "require": "./build/threejs-math.cjs" + "require": "./build/threejs-math.cjs", + "types": "./types/index.d.ts" } }, "sideEffects": false,