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 112
112
"default" : " ./dist/index.mjs"
113
113
},
114
114
"./*.mjs" : {
115
- "types" : " ./dist/*.d.ts" ,
116
- "default" : " ./dist/*.mjs"
115
+ "types" : [ " ./dist/*.d.ts" , " ./dist/*/index.d.ts " ] ,
116
+ "default" : [ " ./dist/*.mjs" , " ./dist/*/index.mjs " ]
117
117
},
118
118
"./*.js" : {
119
- "types" : " ./dist/*.d.ts" ,
120
- "default" : " ./dist/*.js"
119
+ "types" : [ " ./dist/*.d.ts" , " ./dist/*/index.d.ts " ] ,
120
+ "default" : [ " ./dist/*.js" , " ./dist/*/index.js " ]
121
121
},
122
122
"./*" : {
123
- "types" : " ./dist/*.d.ts" ,
124
- "require" : " ./dist/*.js" ,
125
- "default" : " ./dist/*.mjs"
123
+ "types" : [ " ./dist/*.d.ts" , " ./dist/*/index.d.ts " ] ,
124
+ "require" : [ " ./dist/*.js" , " ./dist/*/index.js " ] ,
125
+ "default" : [ " ./dist/*.mjs" , " ./dist/*/index.mjs " ]
126
126
}
127
127
},
128
128
"bin" : " ./bin/cli" ,
You can’t perform that action at this time.
0 commit comments