From c485fc18570b4ef3dfcd2431782aa728ac9850c4 Mon Sep 17 00:00:00 2001 From: Angelo Ashmore Date: Thu, 13 Jan 2022 14:37:11 -1000 Subject: [PATCH] fix: use .mjs module exports --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dc5ca51..9f253ca 100644 --- a/package.json +++ b/package.json @@ -20,12 +20,12 @@ "exports": { ".": { "require": "./dist/index.cjs", - "import": "./dist/index.js" + "import": "./dist/index.mjs" }, "./package.json": "./package.json" }, "main": "dist/index.cjs", - "module": "dist/index.js", + "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist",