I'm working on an Angular 9 project in Visual Studio Code. When I type the name of an existing TypeScript class, I press Ctrl + . to import it automatically. How can I configure the auto-import functionality to use double quotes and relative paths instead of single quotes and absolute paths?
Example:
- I get this:
import { RefreshService } from 'src/app/services/refresh.service';
- I want this:
import { RefreshService } from "../../services/refresh.service";
Thanks!