Is there a way of tweaking TypeScript Auto import feature in Visual Studio Code?
As an example, observe the following attempt:
The added line by the Auto import was the following:
import { Pins } from '../types/index';
I would like it to be added straight away without the comma, in respect to TSLint, and without the /index
path, due to my subject sense of aesthetics, like the following:
import { Pins } from '../types'
Is there a way of saving those few "extra" keyboard hits?