I came across tutorials on how to use ES6 imports in Node.js using Babel, but then CommonJS imports don't work. I would like to use ES6 imports and CommonJS imports in the same files in Node.js (Express.js).
main.js
const jsdom = require("jsdom");
import {GotRequestFunction} from 'got';
Is this possible?