Skip to content

Commit a6612fe

Browse files
committed
fix: fixed types of individual imports
1 parent 39d7d29 commit a6612fe

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"import": "./dist/main.lib.js"
1212
},
1313
"./*": {
14-
"import": "./dist/*"
14+
"import": "./dist/*",
15+
"types": "./dist/*"
1516
},
1617
"./components": {
1718
"types": "./dist/components/index.d.ts",
@@ -34,15 +35,15 @@
3435
"import": "./dist/directives/index.js"
3536
},
3637
"./directives/*": {
37-
"types": "./dist/directives/*.d.ts",
38+
"types": "./dist/directives/*",
3839
"import": "./dist/directives/*"
3940
},
4041
"./helpers": {
4142
"types": "./dist/helpers/index.d.ts",
4243
"import": "./dist/helpers/index.js"
4344
},
4445
"./helpers/*": {
45-
"types": "./dist/helpers/*.d.ts",
46+
"types": "./dist/helpers/*",
4647
"import": "./dist/helpers/*"
4748
},
4849
"./tailwind": {

0 commit comments

Comments
 (0)