{
"exports": {
".": {
"import": ["./dist/module.mjs", "./dist/another-module.mjs"]
"require": "./dist/require.js"
},
}
}
for the "import" condition exports, could it be an array? if fail to resolve "./dist/module.mjs", then try to resolve next value, "./dist/another-module.mjs"
{ "exports": { ".": { "import": ["./dist/module.mjs", "./dist/another-module.mjs"] "require": "./dist/require.js" }, } }for the "import" condition exports, could it be an array? if fail to resolve "./dist/module.mjs", then try to resolve next value, "./dist/another-module.mjs"