I have implemented a generic class as below which might be causing the problem,
import { Logger } from \'@nestjs/common\'; import { PaginationOptionsInt
I've also seen the same problem due to a capitalized reference, when the filename is lowercase:
import { SomeClass } from './Some.class';
but the file was named some.class.ts
some.class.ts
Fixing the import resolved the error.