I was also looking for an answer to this question. I had a reference error: Can't access 'role' before initialization. The relationship between the tables was one-to-many and many-to-one. This solution helped me:
import { Role } from './Role';
@ManyToOne(role: Role, (role) => role.users)
role: Role