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 c3ef98e commit 524a19bCopy full SHA for 524a19b
packages/tsconfig-reference/scripts/cli/generateMarkdown.ts
@@ -107,7 +107,7 @@ languages.forEach((lang) => {
107
markdownChunks.push(` <td>${parseMarkdown(optType)}</td>`);
108
109
if (!opts?.noDefaults) {
110
- markdownChunks.push(` <td>${parseMarkdown(option.defaultValue)}</td>`);
+ markdownChunks.push(` <td>${parseMarkdown(String(option.defaultValue))}</td>`);
111
}
112
markdownChunks.push(`</tr>`);
113
0 commit comments