Skip to content

Commit c3ef98e

Browse files
committed
make generateMarkdown code handle defaultValue=false
1 parent 639b7f8 commit c3ef98e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tsconfig-reference/scripts/tsconfig/generateMarkdown.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ languages.forEach((lang) => {
248248
mdTableRows.push(["Internal"]);
249249
}
250250

251-
if (option.defaultValue) {
251+
if (option.defaultValue !== undefined) {
252252
mdTableRows.push(["Default", String(option.defaultValue)]);
253253
}
254254

0 commit comments

Comments
 (0)