Is it possible to make //ts-expect-error directive only cover a concrete error and not others?
Example of code I would like to silent but only for some kind of error:
I would expect something like ESLint does with rules: //@ts-expect-error TS2339 to only silent errors of that kind, for example.


