Started new project with \'nest new\' command. Works fine until I add entity file to it.
Got following error:
import { Entity, Column, Primary
Defining the entities property in ormconfig.json as mentioned in the official documentation resolved this issue for me.
ormconfig.json
// This is your ormconfig.json file ... "entities": ["dist/**/*.entity{.ts,.js}"] ...