📜package.json
"type": "module" // ES module
"type": "commonjs" // CommonJS module (⭐️ default)
ES export CommonJS exports
-------------------------------------------------
ES import ✅ ✅
CommonJS require ❌ ✅
-------------------------------------------------
⭐️ looks like CommonJS "module.exports" is a better choice❓ Last updated