Skip to content

Commit 074c2ab

Browse files
authored
fix: Move exports.key.default to last position (#1828)
1 parent 0c688d2 commit 074c2ab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
"type": "module",
2020
"exports": {
2121
".": {
22-
"default": "./dist/index.js",
23-
"types": "./dist/index.d.ts"
22+
"types": "./dist/index.d.ts",
23+
"default": "./dist/index.js"
2424
},
2525
"./lazy": {
26-
"default": "./dist/lazy/index.js",
27-
"types": "./dist/lazy/index.d.ts"
26+
"types": "./dist/lazy/index.d.ts",
27+
"default": "./dist/lazy/index.js"
2828
},
2929
"./*": {
30-
"default": "./dist/*.js",
31-
"types": "./dist/*.d.ts"
30+
"types": "./dist/*.d.ts",
31+
"default": "./dist/*.js"
3232
}
3333
},
3434
"scripts": {

0 commit comments

Comments
 (0)