Drop the files.exclude rule for repos/**. The directory is still excluded from auto-imports and file watching, but no longer hidden from the explorer.
11 lines
249 B
JSON
11 lines
249 B
JSON
{
|
|
"typescript.preferences.autoImportFileExcludePatterns": ["repos/**"],
|
|
"javascript.preferences.autoImportFileExcludePatterns": ["repos/**"],
|
|
"files.watcherExclude": {
|
|
"repos/**": true
|
|
},
|
|
"search.exclude": {
|
|
"repos/**": true
|
|
}
|
|
}
|