Skip to content

Commit

Permalink
fix: Move exports.key.default to last position (#1828)
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Apr 21, 2024
1 parent 0c688d2 commit 074c2ab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -19,16 +19,16 @@
"type": "module",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lazy": {
"default": "./dist/lazy/index.js",
"types": "./dist/lazy/index.d.ts"
"types": "./dist/lazy/index.d.ts",
"default": "./dist/lazy/index.js"
},
"./*": {
"default": "./dist/*.js",
"types": "./dist/*.d.ts"
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"scripts": {
Expand Down

0 comments on commit 074c2ab

Please sign in to comment.