From df9865f0274b2f2b05b21e7fadd3508b4e6256ca Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Tue, 21 Jan 2025 15:33:48 +0000 Subject: [PATCH] build: exclude CLI workspace projects from tsconfig to speed up IDE/linting Excludes CLI workspace projects from main project/IDE tsconfig to speed up language service actions and linting. Those files should not be considered part of the development sources. --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index caae9e7eed4f..4df52a94fea7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -33,6 +33,9 @@ "dist-schema/**", "**/node_modules/**/*", "**/third_party/**/*", - "packages/angular_devkit/schematics_cli/schematic/files/**/*" + "packages/angular_devkit/schematics_cli/schematic/files/**/*", + "modules/testing/builder/projects/**/*", + "packages/angular_devkit/build_angular/test/**/*", + "packages/angular_devkit/build_webpack/test/**/*" ] }