We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 941e818 commit b942d50Copy full SHA for b942d50
src/plugin/common.ts
@@ -73,7 +73,7 @@ export async function getInlinePackageEntryPath(
73
} else if (typeof pkgJson.exports === "string") {
74
entryFilePath = pkgJson.exports;
75
} else if (pkgJson.exports?.["."]) {
76
- entryFilePath = pkgJson.exports["."];
+ entryFilePath = pkgJson.exports["."].require;
77
}
78
79
if (!entryFilePath && pkgJson.main) {
0 commit comments