mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 01:29:04 +01:00
Merge branch 'master' into aeschli/ts-sem
This commit is contained in:
@@ -18,7 +18,7 @@ export default class TsConfigProvider {
|
||||
return [];
|
||||
}
|
||||
const configs = new Map<string, TSConfig>();
|
||||
for (const config of await vscode.workspace.findFiles('**/tsconfig*.json', '**/node_modules/**')) {
|
||||
for (const config of await vscode.workspace.findFiles('**/tsconfig*.json', '**/{node_modules,.*}/**')) {
|
||||
const root = vscode.workspace.getWorkspaceFolder(config);
|
||||
if (root) {
|
||||
configs.set(config.fsPath, {
|
||||
|
||||
Reference in New Issue
Block a user