From e67d53cf71cb5c43a427fa5583e30eb7fa04ba06 Mon Sep 17 00:00:00 2001 From: zhanghan Date: Mon, 1 Apr 2024 13:56:33 +0800 Subject: [PATCH] fix: default should be last one --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index b67f26b..b785df7 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,12 @@ "module": "dist/index.mjs", "exports": { "require": { - "default": "./dist/index.js", - "types": "./typings/index.d.ts" + "types": "./typings/index.d.ts", + "default": "./dist/index.js" }, "import": { - "default": "./dist/index.mjs", - "types": "./typings/index.d.ts" + "types": "./typings/index.d.ts", + "default": "./dist/index.mjs" } }, "types": "typings/index.d.ts",