We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c95f3eb commit ee55d86Copy full SHA for ee55d86
packages/tsconfig-reference/scripts/tsconfigRules.ts
@@ -281,6 +281,8 @@ function formatDefaultValue(
281
defaultValue: CommandLineOption["defaultValueDescription"],
282
type: CommandLineOption["type"]
283
) {
284
+ if (type === "boolean" && defaultValue === undefined)
285
+ return "false";
286
if (defaultValue === undefined || typeof type !== "object")
287
return defaultValue;
288
// e.g. ScriptTarget.ES2015 -> "es6/es2015"
0 commit comments