Open k8w opened 7 years ago
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:
.gitignore
/frontend/shared /backend/shared
And when I open frontend or backend via vscode, shared cannot be indexed by tsimporter
frontend
backend
shared
tsimporter
It seems like vscode.workspace.findFiles ignored those files. Have logged a issue here https://github.com/Microsoft/vscode/issues/36617
vscode.workspace.findFiles
A demo project here: https://github.com/k8w/vscode-gitignore-problem-example
Why ignore folder should be index? My project structure:
In order to not submit a symlink,
.gitignore
is:And when I open
frontend
orbackend
via vscode,shared
cannot be indexed bytsimporter