Skip to content

Commit ef65d47

Browse files
committed
document tsconfig options with default: undefined
1 parent 4c41b9b commit ef65d47

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

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

251-
if (option.defaultValue !== undefined) {
252-
mdTableRows.push(["Default", String(option.defaultValue)]);
253-
}
251+
mdTableRows.push(["Default", String(option.defaultValue)]);
254252

255253
if (option.allowedValues) {
256254
mdTableRows.push(["Allowed", option.allowedValues]);

0 commit comments

Comments
 (0)