We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac34e0c commit 647db35Copy full SHA for 647db35
package.json
@@ -5,13 +5,18 @@
5
"repository": "journeyapps/https-proxy-socket",
6
"license": "MIT",
7
"type": "module",
8
- "main": "./lib/cjs/index.cjs",
+ "main": "./lib/cjs/index.js",
9
"module": "./lib/esm/index.js",
10
- "types": "./lib/esm/index.d.ts",
11
"exports": {
12
".": {
13
- "import": "./lib/esm/index.js",
14
- "require": "./lib/cjs/index.cjs"
+ "import": {
+ "default": "./lib/esm/index.js",
+ "types": "./lib/esm/index.d.ts"
15
+ },
16
+ "require": {
17
+ "default": "./lib/cjs/index.js",
18
+ "types": "./lib/cjs/index.d.ts"
19
+ }
20
}
21
},
22
"bin": {
0 commit comments