Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSDoc is missing when using isolatedDeclaration #3906

Open
sxzz opened this issue Jun 25, 2024 · 1 comment
Open

JSDoc is missing when using isolatedDeclaration #3906

sxzz opened this issue Jun 25, 2024 · 1 comment
Assignees
Labels
C-bug Category - Bug

Comments

@sxzz
Copy link

sxzz commented Jun 25, 2024

When using isolatedDeclaration from oxc-transform, JSDoc is missing.

Source:

export interface Options {
  include?: FilterPattern
  exclude?: FilterPattern
  enforce?: 'pre' | 'post' | undefined
  outDir?: string
  /** @default ts */
  outExt?: string
}

Compiled:

export interface Options {
	include?: FilterPattern;
	exclude?: FilterPattern;
	enforce?: (('pre') | ('post') | (undefined));
	outDir?: string;
	outExt?: string;
}
@sxzz sxzz added the C-bug Category - Bug label Jun 25, 2024
@Boshen Boshen self-assigned this Jun 26, 2024
@Boshen
Copy link
Member

Boshen commented Jun 26, 2024

Thank you for testing out! We haven't implemented printing jsdoc in our codegen yet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category - Bug
Projects
None yet
Development

No branches or pull requests

2 participants