Error: Entity metadata for Star#user was not found. Check if you specified a correct entity object and if it's connected in the connection options.
오늘 처음 TypeORM을 하는 도중에 다음과 같은 에러가 났다. 왜나는가 계속 찾아보다 이슈를 통해 해결했다.
관련 이슈
ormconfig.json
{
"type": "mysql",
"host": "localhost",
"port": 3306,
"username": "blahblah",
"password": "blahblah",
"database": "blahblah",
"synchronize": true,
"logging": false,
"entities": [
"entity/*.js"
]
}
로 바꾸어 해결했다. eintities에 .ts로 되어 있을 때는 에러가 났는데 .js로 바꾸고 나서는 에러가 사라졌다.