Skip to content

Commit

Permalink
fix(vue): fix types in exports
Browse files Browse the repository at this point in the history
closes #58
  • Loading branch information
sxzz committed Mar 4, 2023
1 parent 971f292 commit 473f8e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "index.d.ts",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./global": {
"types": "./dist/types/global.d.ts",
"require": "./dist/global.cjs",
"import": "./dist/global.js"
},
Expand All @@ -39,6 +41,7 @@
"typesVersions": {
"*": {
"*": [
"./*",
"./dist/types/*"
]
}
Expand Down

0 comments on commit 473f8e9

Please sign in to comment.