Here's what I did
I have the following code:
@Post('hi')
async sayHello (@Body() someDto: SomeDto): Promise<any> {
return await this.greetingService.sayHello(someDto)
}
When I run:
I don't get errors.
What I expected to happen
I expected to see a no-explicit-any error when I run npx ts-standard
What seems to have happened
No clues
deps.txt