From 7be3620a13e404330df84ce9d7ec40d490716267 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Sat, 23 Sep 2023 10:40:42 +0000 Subject: [PATCH] build: fix IDE completion for benchmarks code (#51887) We are including a file, for some reason, that is outside of the root dir. This breaks TypeScript/ or more specifically VSCode from picking up this tsconfig- breaking path mappings and hence auto completion. PR Close #51887 --- modules/benchmarks/tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/benchmarks/tsconfig.json b/modules/benchmarks/tsconfig.json index 020672cb006..aa2d8c2d361 100644 --- a/modules/benchmarks/tsconfig.json +++ b/modules/benchmarks/tsconfig.json @@ -30,6 +30,5 @@ "no-floating-promises": true, "no-unused-expression": true, "no-unused-variable": true - }, - "include": ["../../node_modules/@angular/build-tooling/bazel/benchmark/driver-utilities/"] + } }