When interacting with ts/tsx files in VS Code, the autocompletion feature for callable properties offers two options: propertyName
and propertyName(args)
:
https://i.sstatic.net/BFVTm.png
However, selecting the second option generates a standard function:
https://i.sstatic.net/dUPXD.png
I would prefer to use an arrow function instead:
https://i.sstatic.net/6act4.png
Is there a setting in VS Code or Typescript that can change the autocompletion to arrow functions?