I have a small issue that's been bugging me. I'm working on a project using Nuxt3 and Vscode. When something is auto-imported, Vscode uses the ~/directory/file
prefix instead of the preferred @/directory/file
. Is there an easy way to configure Vscode or tsconfig to make this change?
The current tsconfig file only extends the default one provided by Nuxt:
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
}