Does anyone know if we can use Nest with verbatimModuleSyntax?
It seems that it would break the DI. See example on TS playground:
import { HttpService } from '@nestjs/axios';
// [...]
class C {
constructor (private readonly m: HttpService) {}
}
The verbatimModuleSyntax option makes in an error to have this import with no type but if you fix it to import type as it wants, then the thing is decorated with Function instead of HttpService! (see the generated JS output).
I can't find anything about it in the Nest issues. Anyone knows something about it?