Auridas F.
Auridas F.
Thanks, installing node 8.9.0 worked for me as well.
Also spent quite an amount of time on this, here's how we did it: Repo file `user.repository.ts`: ``` export const UserRepository = Container.get(DataSource) .getRepository(User) .extend({ async doSomething(): Promise { },...
Also had a similar issue, here's our approach: In `controller.ts` (entry point, but at the top of imports) we added this, followed by `.initialize()` below. ``` // We need to...