Skip to content

Commit

Permalink
fix: missing types for plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobrosenberg committed Sep 13, 2024
1 parent 58a1d0b commit 987e728
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
"types": "index.d.ts",
"typesVersions": {
"*": {
"plugins": [
"./typings/plugins/index.d.ts"
],
"plugins/*": [
"./typings/plugins/*"
],
"vite-plugin": [
"./typings/lib/extra/vite-plugin/vite-plugin.d.ts"
],
Expand Down Expand Up @@ -53,7 +59,10 @@
},
"./typings/*": "./typings/*",
"./plugins/*": "./plugins/*",
"./plugins": "./plugins/index",
"./plugins": {
"default": "./plugins/index",
"types": "./typings/plugins/index.d.ts"
},
"./tools": {
"default": "./lib/extra/tools/index.js",
"types": "./typings/lib/extra/tools/ssr.d.ts"
Expand Down

0 comments on commit 987e728

Please sign in to comment.