For example, this example
async function a() { await null; }
has a small warning on await in VS Code
'await' has no effect on the type of this expression. ts(80007)
How do I make that warning behave like an error in VS Code and tsc
(be more visible, fail compilation)?