Add option --stopBuildOnErrors to tsbuild to get previous behavior of not building downstream projects if upstream has errors (#59433)

This commit is contained in:
Sheetal Nandi
2024-08-16 19:02:42 -07:00
committed by GitHub
parent f850298f70
commit d06fb82d7c
13 changed files with 3702 additions and 9 deletions
+7
View File
@@ -1696,6 +1696,13 @@ export const optionsForBuild: CommandLineOption[] = [
type: "boolean",
defaultValueDescription: false,
},
{
name: "stopBuildOnErrors",
category: Diagnostics.Command_line_Options,
description: Diagnostics.Skip_building_downstream_projects_on_error_in_upstream_project,
type: "boolean",
defaultValueDescription: false,
},
];
/** @internal */