We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b473856 commit 04e5154Copy full SHA for 04e5154
package.json
@@ -27,19 +27,21 @@
27
"exports": {
28
".": {
29
"types": "./dist/index.d.ts",
30
- "node": {
31
- "import": "./browser/index.js",
32
- "require": "./dist/index.js"
33
- },
+ "node": "./dist/index.js",
34
"default": "./browser/index.js"
35
},
36
"./package.json": "./package.json",
37
"./util": {
38
"types": "./dist/util.d.ts",
39
40
- "import": "./browser/dist/util.js",
41
- "require": "./dist/util.js"
42
+ "node": "./dist/util.js",
+ "default": "./browser/dist/util.js"
+ },
+ "./esm": {
+ "types": "./dist/index.d.ts",
+ "default": "./browser/index.js"
43
+ "./esm/util": {
44
+ "types": "./dist/util.d.ts",
45
"default": "./browser/dist/util.js"
46
}
47
0 commit comments