From c55207f0a2677ec1067573ecdf1605b3a65822e1 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Mon, 7 Aug 2023 13:13:23 +0100 Subject: [PATCH] Use vendored TypeScript version for VS Code --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 5dcc74146..7209d9318 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,5 +9,8 @@ }, // Installing a new Node package often triggers VS Code's git limit warnings as there is typically // an intermediate stage where many files are modified. This setting suppresses these warnings. - "git.ignoreLimitWarning": true + "git.ignoreLimitWarning": true, + // Use the vendored TypeScript version to have a consistent development experience across + // machines. + "typescript.tsdk": "node_modules/typescript/lib" }