From 89397d1314ec1c1ed708360578e40a299f3b2067 Mon Sep 17 00:00:00 2001 From: nvms Date: Mon, 9 Sep 2024 09:44:37 -0400 Subject: [PATCH] fix exports --- packages/ngn/package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/ngn/package.json b/packages/ngn/package.json index dcab8a9..e8fbc21 100644 --- a/packages/ngn/package.json +++ b/packages/ngn/package.json @@ -17,14 +17,14 @@ }, "exports": { ".": { - "require": "./dist/index.cjs", + "types": "./dist/index.d.ts", "import": "./dist/index.js", - "types": "./dist/index.d.ts" + "require": "./dist/index.cjs" }, "./input": { - "require": "./dist/index.cjs", - "import": "./dist/index.js", - "types": "./dist/index.d.ts" + "types": "./dist/packages/input/index.d.ts", + "import": "./dist/packages/input/index.js", + "require": "./dist/packages/input/index.cjs" } }, "publishConfig": {