When working with TypeScript, I typically export a class using the following syntax:
export default class World {
}
However, during compilation, TypeScript transforms it into:
exports.default = class World {
}
Is there a way to compile it to be like this instead?
exports = class World {
}