TypeORM Entity in NESTJS - Cannot use import statement outside a module
问题 Started new project with 'nest new' command. Works fine until I add entity file to it. Got following error: import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm'; ^^^^^^ SyntaxError: Cannot use import statement outside a module What do I miss? Adding Entity to Module: import { Module } from '@nestjs/common'; import { BooksController } from './books.controller'; import { BooksService } from './books.service'; import { BookEntity } from './book.entity'; import { TypeOrmModule } from