Skip to content

Commit

Permalink
fix: ensure type exports is first in package.json export declaration (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
HiChen404 committed Mar 23, 2023
1 parent 385837d commit b6ccd0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -6,9 +6,9 @@
"module": "dist/immer.esm.js",
"exports": {
".": {
"types": "./dist/immer.d.ts",
"import": "./dist/immer.esm.mjs",
"require": "./dist/index.js",
"types": "./dist/immer.d.ts"
"require": "./dist/index.js"
},
"./*": "./*"
},
Expand Down

0 comments on commit b6ccd0f

Please sign in to comment.