I'm migrating my Welcome Dashboard on the new V14 Umbraco.
I was following the https://docs.umbraco.com/umbraco-cms/extending/customize-backoffice/vite-package-setup and https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-custom-dashboard tutoritals.
The problem that I am now facing is, that since the node_modules is installed "deep" in the solution tree, I started to get build error by VS.
Cannot evaluate the item metadata "%(FullPath)". The item metadata "%(FullPath)" cannot be applied to the path "App_Plugins\my-welcome-dashboard\node_modules\%40umbraco-cms\backoffice\dist-cms\packages\documents\documents\user-permissions\input-document-granular-user-permission\input-document-granular-user-permission.element.d.ts". Path: C:\src\COM\MyCom\src\Cms\MyCom.Cms\App_Plugins\my-welcome-dashboard\node_modules\@umbraco-cms\backoffice\dist-cms\packages\documents\documents\user-permissions\input-document-granular-user-permission\input-document-granular-user-permission.element.d.ts exceeds the OS max path limit. The fully qualified file name must be less than 260 characters.
I excluded the node_modules folder from solution, but the compiler still tries to do something with it.
<ItemGroup>
<None Remove="App_Plugins\my-welcome-dashboard\node_modules\**" />
</ItemGroup>
Has anyone faced this issue and solved it?