Skip to content

Commit 3ee53c9

Browse files
committed
build: clean up redundant exclude field from tsconfig-build.json
The exclude field has been removed from `tsconfig-build.json` as it is redundant. This configuration is used by Bazel, which already specifies the input files explicitly, making the exclude field unnecessary. This change simplifies the configuration without impacting the build process. (cherry picked from commit 4aa95bd)
1 parent b2d1477 commit 3ee53c9

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

Diff for: tsconfig-build.json

+1-22
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,5 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"types": ["node"]
5-
},
6-
"exclude": [
7-
"packages/angular_devkit/build_angular/src/bazel-babel.d.ts",
8-
"bazel-out/**/*",
9-
"dist/**/*",
10-
"dist-schema/**",
11-
"goldens/**/*",
12-
"**/node_modules/**/*",
13-
"**/third_party/**/*",
14-
"packages/angular_devkit/schematics_cli/blank/*-files/**/*",
15-
"packages/angular_devkit/schematics_cli/schematic/files/**/*",
16-
"packages/angular_devkit/build_angular/src/*/tests/**/*",
17-
"packages/angular_devkit/build_angular/src/builders/*/tests/**/*",
18-
"packages/angular_devkit/build_angular/src/testing/**/*",
19-
"packages/angular_devkit/*/test/**/*",
20-
"packages/schematics/*/*/*files/**/*",
21-
"tests/**/*",
22-
"tools/**/*",
23-
".ng-dev/**/*",
24-
"**/*_spec.ts",
25-
"scripts/**/*.mts"
26-
]
5+
}
276
}

0 commit comments

Comments
 (0)