From 1e21af8ac6d11786c40d3ef831d89a16afc745e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Trombit=C3=A1s?= Date: Mon, 2 Sep 2024 15:19:33 +0200 Subject: [PATCH] moves deafult condition to last in package.json to fix webpack errors. --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 5c63fa7..6a3c14d 100644 --- a/package.json +++ b/package.json @@ -38,12 +38,12 @@ "exports": { ".": { "import": { - "default": "./dist/index.js", - "types": "./dist/index.d.ts" + "types": "./dist/index.d.ts", + "default": "./dist/index.js" }, "require": { - "default": "./dist/index.cjs", - "types": "./dist/index.d.cts" + "types": "./dist/index.d.cts", + "default": "./dist/index.cjs" } } },