Esto es quizás un error tipográfico. @Injectable en lugar de @Injectable() .
import { Injectable } from "@nestjs/common"; import { User } from "./users.model"; @Injectable() export class UsersService { users: Array<User> = []; getUsers() { return this.users; } }El decorador debe corregirse a @Injectable().
Error de sintaxis
Tienes: @Injectable
Necesario: @Injectable()
Ejemplo :