Запуск приложения nestjs и консоль показывает:
WARNING!!
The "modules" key in the @Module() decorator is deprecated and will be removed within next major release. Use the "imports" key instead.
Мои модули объявлены как:
@Module({
imports: [UserModule],
providers: [AuthService, JwtStrategy],
controllers: [AuthController]
})
export class AuthModule {}
Я также выполнил команду "найти по пути" для слова modules
, чтобы убедиться, что в моем коде нет modules
.
Есть идеи?