From d57b49052cfd9d8a79f5c085fbeb872469953b9c Mon Sep 17 00:00:00 2001 From: Jeremy Mowery Date: Thu, 25 Dec 2025 10:03:05 -0700 Subject: [PATCH] build(multiple): Recommend installing the angular language service extension and bazel extension build(multiple): recommend installing the bazel extension Since the repo uses Bazel, installing the Bazel extension will give syntax highlighting and other features --- .vscode/extensions.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index c297ab5ab359..2cd2f58a2ba1 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,5 +3,10 @@ // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp // List of extensions which should be recommended for users of this workspace. - "recommendations": ["ms-vscode.vscode-typescript-tslint-plugin", "esbenp.prettier-vscode"] + "recommendations": [ + "ms-vscode.vscode-typescript-tslint-plugin", + "esbenp.prettier-vscode", + "angular.ng-template", + "bazelbuild.vscode-bazel" + ] }