From f74dcae5e184dee657a320efdd4060d0e11ccc33 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Sun, 21 Apr 2024 12:29:18 +0200 Subject: [PATCH] Move exports.key.default to last position --- 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": {