From 074c2ab2bed9c905af43aa7fb8fdd0b8ddee5547 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Sun, 21 Apr 2024 15:01:10 +0200 Subject: [PATCH] fix: Move exports.key.default to last position (#1828) --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 2b5aa1b9..3d5bd691 100644 --- a/package.json +++ b/package.json @@ -19,16 +19,16 @@ "type": "module", "exports": { ".": { - "default": "./dist/index.js", - "types": "./dist/index.d.ts" + "types": "./dist/index.d.ts", + "default": "./dist/index.js" }, "./lazy": { - "default": "./dist/lazy/index.js", - "types": "./dist/lazy/index.d.ts" + "types": "./dist/lazy/index.d.ts", + "default": "./dist/lazy/index.js" }, "./*": { - "default": "./dist/*.js", - "types": "./dist/*.d.ts" + "types": "./dist/*.d.ts", + "default": "./dist/*.js" } }, "scripts": {