TypeORM Entity in NESTJS - Cannot use import statement outside a module

后端 未结 10 1810
甜味超标
甜味超标 2020-12-03 10:01

Started new project with \'nest new\' command. Works fine until I add entity file to it.

Got following error:

import { Entity, Column, Primary

10条回答
  •  爱一瞬间的悲伤
    2020-12-03 10:37

    Defining the entities property in ormconfig.json as mentioned in the official documentation resolved this issue for me.

    // This is your ormconfig.json file
    
    ...
    "entities": ["dist/**/*.entity{.ts,.js}"]
    ...
    

提交回复
热议问题