ts-importer
ts-importer copied to clipboard
Cannot index folder appeared in .gitignore
A demo project here: https://github.com/k8w/vscode-gitignore-problem-example
Why ignore folder should be index? My project structure:
|- __shared
|- frontend
|- shared // a symlink to ../__shared
|- backend
|- shared // a symlink to ../__shared
In order to not submit a symlink, .gitignore
is:
/frontend/shared
/backend/shared
And when I open frontend
or backend
via vscode, shared
cannot be indexed by tsimporter
It seems like vscode.workspace.findFiles
ignored those files.
Have logged a issue here https://github.com/Microsoft/vscode/issues/36617