diff --git a/src/extract.ts b/src/extract.ts index d0e581f..555b024 100644 --- a/src/extract.ts +++ b/src/extract.ts @@ -1104,11 +1104,11 @@ function inferTypeFromDefaultValue(defaultValue: string): string { /** * Check if a line is a JSDoc comment */ -function isJSDocComment(line: string): boolean { - const trimmed = line.trim() - const isJsDoc = trimmed.startsWith('/**') || trimmed.startsWith('*') || trimmed.startsWith('*/') - return isJsDoc -} +// function isJSDocComment(line: string): boolean { +// const trimmed = line.trim() +// const isJsDoc = trimmed.startsWith('/**') || trimmed.startsWith('*') || trimmed.startsWith('*/') +// return isJsDoc +// } function isDefaultExport(line: string): boolean { // Handle both inline and multi-line default exports diff --git a/tsconfig.json b/tsconfig.json index 6d4ebf7..eef6ace 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -28,5 +28,5 @@ "exclude": [ "**/fixtures", "**/dist" - ], + ] }