Node.js now supports ES Modules. We should support it by exporting both CommonJS and ES modules as outlined in this article and this one.
I attempted this and got pretty far until I reached a blocker in which you need to explicitly define file extensions in the Node.js implementation as described in this issue (see below).
Allowed
import myModule from './myModule.js'
Not allowed
import myModule from './myModule'
Once this issue is addressed in Node.js, we can proceed with this support.
Node.js now supports ES Modules. We should support it by exporting both CommonJS and ES modules as outlined in this article and this one.
I attempted this and got pretty far until I reached a blocker in which you need to explicitly define file extensions in the Node.js implementation as described in this issue (see below).
Allowed
Not allowed
Once this issue is addressed in Node.js, we can proceed with this support.