When using VSCode with Angular, I write my import statement list this:
import { AppComponent } from './app.component';
The VSCode Quick Fix adds them like this:
import { WelcomeComponent } from "app/home/welcome.component";
Is there a way to change the VS Code Quick Fix with a VS Code setting to use single instead of double quotes?