From fc39dff2c09a2b0531332ffe96a7b1dc67cd73df Mon Sep 17 00:00:00 2001 From: Victorien Elvinger Date: Thu, 1 Jun 2023 14:58:15 +0200 Subject: [PATCH] refactor: exports for types and package.json To ensure that `package.json` is qccessible, it has to be exported. See https://github.com/nodejs/node/issues/33460 For the same reason, we now export TypeScript types. --- package.json | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index f154971..034f887 100644 --- a/package.json +++ b/package.json @@ -24,14 +24,20 @@ "node": "^14.18.0 || >=16.0.0" }, "type": "module", - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "es2015": "./dist/index.js", "types": "./dist/index.d.ts", + "module": "./dist/index.js", + "main": "./dist/index.cjs", "exports": { - "module": "./dist/index.js", - "require": "./dist/index.cjs", - "default": "./dist/index.js" + "./package.json": "./package.json", + ".": { + "require": { + "types": "./dist/index.d.cts", + "default": "./dist/index.cjs" + }, + "types": "./dist/index.d.ts", + "module": "./dist/index.js", + "default": "./dist/index.js" + } }, "imports": { "#dev": { @@ -42,10 +48,8 @@ }, "sideEffects": false, "files": [ - "dist/*.cjs", - "dist/*.d.ts", - "dist/*.js", "dist/**/*.cjs", + "dist/**/*.d.cts", "dist/**/*.d.ts", "dist/**/*.js" ],