Skip to content

Commit

Permalink
🐛 fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
prazdevs committed Aug 29, 2024
1 parent 2e87c70 commit c6715ea
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions packages/plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,18 @@
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
Expand Down

0 comments on commit c6715ea

Please sign in to comment.