From 060e385ef5f88da056e574c0c161cc3132b7feb0 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Tue, 19 Sep 2023 08:28:28 -0700 Subject: [PATCH] Add typescript.preferences.autoImportFileExcludePatterns to repo (#193477) For https://github.com/microsoft/TypeScript/issues/55781 --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6925e3ed8c6..0069fee3d12 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -151,4 +151,12 @@ "application.experimental.rendererProfiling": true, "editor.experimental.asyncTokenization": true, "editor.experimental.asyncTokenizationVerification": true, + "typescript.preferences.autoImportFileExcludePatterns": [ + "xterm", + "xterm-headless", + "node-pty", + "vscode-notebook-renderer", + "src/vs/workbench/workbench.web.main.ts", + "src/vs/workbench/api/common/extHostTypes.ts" + ] }