Skip to content

Commit

Permalink
fix: add ts:node16 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ruicsh committed Apr 11, 2023
1 parent 15e2e3e commit 68b6b16
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,14 @@
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./dist/index.mjs"
Expand Down

0 comments on commit 68b6b16

Please sign in to comment.