Closed GerardasB closed 2 months ago
Review the package.json of AppUI packages and make sure that AppUI is ESM first. I.e. currently module field is used, which is not officially supported by Node.js. Instead exports field should be used https://nodejs.org/api/packages.html#exports.
package.json
ESM
module
exports
Describe the issue
Review the
package.json
of AppUI packages and make sure that AppUI isESM
first. I.e. currentlymodule
field is used, which is not officially supported by Node.js. Insteadexports
field should be used https://nodejs.org/api/packages.html#exports.