Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ public TypeScriptGeneratorSettings()
GenerateTypeCheckFunctions = false;
}

/// <summary>Gets or sets the target TypeScript version (minimum, default: 4.3).</summary>
/// <summary>Gets or sets the target TypeScript version (default: 4.3, minimum: 4.3).
/// Accepts any decimal version number greater than or equal to 4.3 (e.g. 4.3, 4.9, 5.0).
/// The version is used to determine which TypeScript language features are available and may be used in the generated code.</summary>
public decimal TypeScriptVersion { get; set; }

/// <summary>Gets or sets a value indicating whether to mark optional properties with ? (default: false).</summary>
Expand Down