Skip to content

Commit

Permalink
refactor: exports for types and package.json
Browse files Browse the repository at this point in the history
To ensure that `package.json` is qccessible, it has to be exported.
See nodejs/node#33460

For the same reason, we now export TypeScript types.
  • Loading branch information
Conaclos committed Jun 1, 2023
1 parent 53518ed commit f1386b7
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,17 @@
"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",
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"imports": {
"#dev": {
Expand Down

0 comments on commit f1386b7

Please sign in to comment.