Skip to content

Commit

Permalink
build: clean up redundant exclude field from tsconfig-build.json
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
alan-agius4 committed Aug 22, 2024
1 parent b2d1477 commit 3ee53c9
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions tsconfig-build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,5 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"types": ["node"]
},
"exclude": [
"packages/angular_devkit/build_angular/src/bazel-babel.d.ts",
"bazel-out/**/*",
"dist/**/*",
"dist-schema/**",
"goldens/**/*",
"**/node_modules/**/*",
"**/third_party/**/*",
"packages/angular_devkit/schematics_cli/blank/*-files/**/*",
"packages/angular_devkit/schematics_cli/schematic/files/**/*",
"packages/angular_devkit/build_angular/src/*/tests/**/*",
"packages/angular_devkit/build_angular/src/builders/*/tests/**/*",
"packages/angular_devkit/build_angular/src/testing/**/*",
"packages/angular_devkit/*/test/**/*",
"packages/schematics/*/*/*files/**/*",
"tests/**/*",
"tools/**/*",
".ng-dev/**/*",
"**/*_spec.ts",
"scripts/**/*.mts"
]
}
}

0 comments on commit 3ee53c9

Please sign in to comment.