How to import a Javascript file that is ESM from a CommonJS module? Got. Error: Not supported
My project is written entirely in CommonJS module and I can't change it. I am trying to use a library which is an ESM. The library is Got library (https://github.com/sindresorhus/got). This is my code const request = require('request'); const Promise…