You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
templates is located in this folder, so link is relative.
I opened project like workspace: File -> Open workspace from file then select workspace file from .vscode/project.code-workspace
After in the sidebar I see separate folder for store app, I open it, select any folder and try to New from template command with right click.
I always get error
File not found: '/Users/7iomka/Desktop/projects/react/project/apps/store/.vscode/templates/next-with-effector-view/.module-templates.json'
So your extension always tries to find the provided path under workspace but if not found, it doesn't try to look in the project root.
Some extensions like typescript support aliased values for this, like in example ROOT.
Or even native vscode ${workspaceFolder}.
I'm very frustrated that I can't get a plugin going now for my monorepository.
Appreciate any help you can give me
One workaround that I found that I need now in every workspace (folder) to create separare .vscode/setting.json
with the following content
Hi
My workspace config in the root
.vscode/project.code-workspace
templates is located in this folder, so link is relative.
I opened project like workspace:
File -> Open workspace from file
then select workspace file from.vscode/project.code-workspace
After in the sidebar I see separate folder for store app, I open it, select any folder and try to
New from template
command with right click.I always get error
So your extension always tries to find the provided path under workspace but if not found, it doesn't try to look in the project root.
Some extensions like typescript support aliased values for this, like in example
ROOT
.Or even native vscode
${workspaceFolder}
.I'm very frustrated that I can't get a plugin going now for my monorepository.
Appreciate any help you can give me
One workaround that I found that I need now in every workspace (folder) to create separare
.vscode/setting.json
with the following content
It works ok, but I would like to have fallback to the root vscode config if the local was not settled
The text was updated successfully, but these errors were encountered: