From 2790ba984e8819124b462ccbfc53016157bd9780 Mon Sep 17 00:00:00 2001 From: Scott Gress Date: Tue, 7 Apr 2026 11:27:10 -0500 Subject: [PATCH] Update VSCode Typescript version setting (#43131) This PR updates VSCode settings to use Fleet's installed version of Typescript (v4.7.4) for its language server (linting, autocomplete, etc.) instead of what's built in to VSCode (v6.0.2). As the two can drift, we end up with VSCode incorrectly highlighting certain syntax as incorrect. --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b7ff4dd8e5..5848c9dbad 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -37,5 +37,6 @@ "prettier.requireConfig": true, "yaml.schemas": { "https://json.schemastore.org/codecov.json": ".github/workflows/codecov.yml" - } + }, + "js/ts.tsdk.path": "node_modules/typescript/lib" }