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 af86e5b commit 394148eCopy full SHA for 394148e
docs/guide/build.md
@@ -194,14 +194,14 @@ Or, if exposing multiple entry points:
194
"type": "module",
195
"files": ["dist"],
196
"main": "./dist/my-lib.cjs",
197
- "module": "./dist/my-lib.mjs",
+ "module": "./dist/my-lib.js",
198
"exports": {
199
".": {
200
- "import": "./dist/my-lib.mjs",
+ "import": "./dist/my-lib.js",
201
"require": "./dist/my-lib.cjs"
202
},
203
"./secondary": {
204
- "import": "./dist/secondary.mjs",
+ "import": "./dist/secondary.js",
205
"require": "./dist/secondary.cjs"
206
}
207
0 commit comments