The package.json declares:
"module": "dist/index.mjs"
However, dist/index.mjs is not present in the published package.
resolve: {
alias: {
"react-loqate": "./node_modules/react-loqate/dist/index.js",
},
}
Expected
Generate and publish dist/index.mjs or update the module field to point to an existing file.
Thanks!
The
package.jsondeclares:However,
dist/index.mjsis not present in the published package.Expected
Generate and publish
dist/index.mjsor update the module field to point to an existing file.Thanks!