We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
exports
1 parent 2817bf5 commit acee667Copy full SHA for acee667
package.json
@@ -8,14 +8,24 @@
8
"type": "module",
9
"exports": {
10
".": {
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.cjs",
13
- "types": "./dist/index.d.ts"
+ "import": {
+ "types": "./dist/index.d.mts",
+ "default:": "./dist/index.mjs"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default:": "./dist/index.cjs"
18
+ }
19
},
20
"./update": {
- "import": "./dist/update.mjs",
- "require": "./dist/update.cjs",
- "types": "./dist/update.d.ts"
21
22
+ "types": "./dist/update.d.mts",
23
+ "default:": "./dist/update.mjs"
24
25
26
+ "types": "./dist/update.d.cts",
27
+ "default:": "./dist/update.cjs"
28
29
}
30
31
"main": "./dist/index.cjs",
0 commit comments