Automatically configure tsc output and provide a new 'diagnosticStyle' option.

This commit is contained in:
Daniel Rosenwasser
2018-04-13 20:51:09 -07:00
parent 23ed9f8423
commit bd3e854b31
4 changed files with 25 additions and 4 deletions

View File

@@ -56,6 +56,14 @@ namespace ts {
category: Diagnostics.Command_line_Options,
description: Diagnostics.Stylize_errors_and_messages_using_color_and_context_experimental
},
{
name: "diagnosticStyle",
type: createMapFromTemplate({
auto: DiagnosticStyle.Auto,
pretty: DiagnosticStyle.Pretty,
simple: DiagnosticStyle.Simple,
}),
},
{
name: "preserveWatchOutput",
type: "boolean",