When working in TypeScript in Visual Studio Code, the import suggestion on a type (triggered by space + period) will generate an import using double quotes.
Our TypeScri
You can also configure the below line in your vscode user settings to allow single quote in string.
Go to Preferences > User Settings
"prettier.singleQuote": true
This will allow single quote in String. Otherwise, if you manually change all double quotes to single quotes it will revert back while saving. Also, add
"tslint.autoFixOnSave": true
to auto-fix while saving.