We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22dbea3 commit 228c810Copy full SHA for 228c810
package.json
@@ -108,17 +108,17 @@
108
"default": "./dist/index.mjs"
109
},
110
"./*.mjs": {
111
- "types": "./dist/*.d.ts",
112
- "default": "./dist/*.mjs"
+ "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
+ "default": ["./dist/*.mjs", "./dist/*/index.mjs"]
113
114
"./*.js": {
115
116
- "default": "./dist/*.js"
+ "default": ["./dist/*.js", "./dist/*/index.js"]
117
118
"./*": {
119
120
- "require": "./dist/*.js",
121
+ "require": ["./dist/*.js", "./dist/*/index.js"],
122
}
123
124
0 commit comments