Is there a way to force autoimport to always use the alias for importing modules in a [email protected] project using VSCode?
I would like to use them even when it's a sibling component, no exceptions, so instead of
import { Navbar } from "./components";
I would like to force auto-import to use the alias in all cases:
import { Navbar } from "@/components";