File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 113
113
"default" : " ./dist/index.mjs"
114
114
},
115
115
"./*.mjs" : {
116
- "types" : " ./dist/*.d.ts" ,
117
- "default" : " ./dist/*.mjs"
116
+ "types" : [ " ./dist/*.d.ts" , " ./dist/*/index.d.ts " ] ,
117
+ "default" : [ " ./dist/*.mjs" , " ./dist/*/index.mjs " ]
118
118
},
119
119
"./*.js" : {
120
- "types" : " ./dist/*.d.ts" ,
121
- "default" : " ./dist/*.js"
120
+ "types" : [ " ./dist/*.d.ts" , " ./dist/*/index.d.ts " ] ,
121
+ "default" : [ " ./dist/*.js" , " ./dist/*/index.js " ]
122
122
},
123
123
"./*" : {
124
- "types" : " ./dist/*.d.ts" ,
125
- "require" : " ./dist/*.js" ,
126
- "default" : " ./dist/*.mjs"
124
+ "types" : [ " ./dist/*.d.ts" , " ./dist/*/index.d.ts " ] ,
125
+ "require" : [ " ./dist/*.js" , " ./dist/*/index.js " ] ,
126
+ "default" : [ " ./dist/*.mjs" , " ./dist/*/index.mjs " ]
127
127
}
128
128
}
129
129
}
You can’t perform that action at this time.
0 commit comments