does somebody know how to do a module.exports? I tried some different ways ending up with export class Greeter {} which will compile to exports.Greeter = Greeter; But what I really want is this: exports = Greeter; So that I can use it like this: import { Greeter } from "greeter"; const greeter = new Greeter(); and not import { Greeter } from "greeter"; const greeter = new Greeter.Greeter(); Is thi

