If you receive the following error while developing a NodeJS package
ReferenceError: exports is not defined
The solution could be to avoid adding this line to your package.json
:
"type": "module"
You can read more about Modules, require
, import
, exports
here: