Skip to content

Commit

Permalink
fix package exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo Zurbriggen committed Aug 8, 2024
1 parent 9739363 commit f6422f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@
"vue-tsc": "^2.0.29"
},
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"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 f6422f1

Please sign in to comment.