I'm building my app locally and am running into an issue where the compiler complains about a file not having a default export. I managed to solve the issue in one of them by simply adding default
export default ()=>{
//...
}```
My `nodemailer.ts` is completely blank. Do I still need an `export default`? Do I just do a simple
```tsx
export default {}
for the compiler to stop complaining? Is this a good work around?