Skip to content

Commit

Permalink
chore: Put TS subpath exports first
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidnioulz committed Sep 26, 2024
1 parent 401bd00 commit 216d149
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,34 @@
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
"import": "./dist/index.mjs"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"require": "./dist/jsx-runtime.js",
"import": "./dist/jsx-runtime.mjs",
"types": "./dist/jsx-runtime.d.ts"
"import": "./dist/jsx-runtime.mjs"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"require": "./dist/jsx-runtime.js",
"import": "./dist/jsx-runtime.mjs",
"types": "./dist/jsx-runtime.d.ts"
"import": "./dist/jsx-runtime.mjs"
},
"./manager": {
"types": "./dist/manager.d.ts",
"require": "./dist/manager.js",
"import": "./dist/manager.mjs",
"types": "./dist/manager.d.ts"
"import": "./dist/manager.mjs"
},
"./preset": {
"types": "./dist/preset.d.ts",
"require": "./dist/preset.js",
"import": "./dist/preset.mjs",
"types": "./dist/preset.d.ts"
"import": "./dist/preset.mjs"
},
"./preview": {
"types": "./dist/preview.d.ts",
"require": "./dist/preview.js",
"import": "./dist/preview.mjs",
"types": "./dist/preview.d.ts"
"import": "./dist/preview.mjs"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 216d149

Please sign in to comment.