Ian Kaplan
Ian Kaplan
```typescript import { Service } from '@hapipal/schmervice'; export class MeService extends Service { constructor(server, options) { super(server, options); } } ```` im using hautecouture as well. I think it might...
Also, this sounds like a runtime error from schmervice rather that an error from typescript— is that correct? yes this is a runtime error
ok i had a default export in my code. I actually resolved the error if i assign `MeService` to `module.exports` in the `.ts` files otherwise it complies to `exports.default =...
Thanks. I will confirm that default export does produce the error while setting module.exports does not. If you look into it I'd be curious to learn what you find!