Avviato un nuovo progetto con il comando 'annida nuovo'. Funziona bene fino a quando non aggiungo il file entità ad esso.
Si è verificato il seguente errore:
import {Entity, Column, PrimaryGeneratedColumn} da 'typeorm';
^^^^^^
SyntaxError: impossibile utilizzare l'istruzione import all'esterno di un modulo
Cosa mi manca
Aggiunta di entità al modulo:
import { Module } from '@nestjs/common';
import { BooksController } from './books.controller';
import { BooksService } from './books.service';
import { BookEntity } from './book.entity';
import { TypeOrmModule } from '@nestjs/typeorm';
@Module({
imports: [TypeOrmModule.forFeature([BookEntity])],
controllers: [BooksController],
providers: [BooksService],
})
export class BooksModule {}
app.module.ts:
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Connection } from 'typeorm';
import { BooksModule } from './books/books.module';
@Module({
imports: [TypeOrmModule.forRoot()],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
src
directory? Se stai usando TypeORM, si può mostrare la tua TypeOrmModule
importazione nel AppModule
's imports
array? Potrebbe esserci qualcosa di sbagliato nella configurazione che non possiamo vedere