I use typescript to make NPM module and I write modules like export default xyz; but I’d like TSC to translate it to CommonJS on transpilation. And I want to keep const and other ES6, just need the exports to be Node… I’ve tried many TSCONFIG, as advised in some topics, currently it looks li…