SyntaxFix
Write A Post
Hire A Developer
Questions
try this ugly but workable solution:
// use CommonJS to export all keys module.exports = { a: 1, b: 2, c: 3 }; // import by key import { a, b, c } from 'commonjs-style-module'; console.log(a, b, c);