We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f989746 commit 647ba7aCopy full SHA for 647ba7a
package.json
@@ -112,17 +112,17 @@
112
"default": "./dist/index.mjs"
113
},
114
"./*.mjs": {
115
- "types": "./dist/*.d.ts",
116
- "default": "./dist/*.mjs"
+ "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
+ "default": ["./dist/*.mjs", "./dist/*/index.mjs"]
117
118
"./*.js": {
119
120
- "default": "./dist/*.js"
+ "default": ["./dist/*.js", "./dist/*/index.js"]
121
122
"./*": {
123
124
- "require": "./dist/*.js",
125
+ "require": ["./dist/*.js", "./dist/*/index.js"],
126
}
127
128
"bin": "./bin/cli",
0 commit comments