TJ inherited a NestJS project. The original developers left the team many years ago, but they've left their mark in the codebase.
// ProjectsModule.ts
@Module({
controllers: […],
providers: […],
exports: […],
})
export class ProjectsModule {}

NestJS is a dependency-injection oriented framework for TypeScript code. It offers "providers"...