Description
Thank you for the awesome extension! I loved using it with takeover mode, but it seems completely broken as of moving off to Yarn 3 without the node_modules folder.
First of all, it doesn't seem to work with Yarn 3 relative path workspaces. If I have my dependency like
"gun": "workspace:packages/gun",
I can't refer to it like
import Gun from 'gun';
And get to refer to it like
import Gun from '@/../../gun';
instead.
Even though without Volar, Yarn 3 workspaces are perfectly handled.
If I disable Take Over Mode, Vue TS checks fail completely:
Then, VSCode shows two tooltips rather than one:
If Volar has any issues that VSCode has not, these messages differ:
The upper one finds the module, the lower one (Volar) does not.
Last, but not least -- Volar doesn't import packages from .yarn:
Is Yarn 3 support not intended? I really wish it was working. Hope it's not much of a headache to fix this. Thank you in advance!