Yi-Shuo Lin

Results 5 comments of Yi-Shuo Lin

The compiled output from @kirkbaly's example appears to be correct, as shown below ``` import * as Bar from 'Bar.ts'; import { baz } from 'Baz.ts'; Bar.bar(); baz(); ``` After...

@webpro I encountered a similar issue—Knip reports unused enumMembers if the enum member is used in a file compiled by a custom compiler. Here's a minimal [reproduction](https://stackblitz.com/edit/github-bquuj6-qmivfu?file=src%2FFoo.vue). Apologies, but I...

Thanks for the fix! I tested it, and it worked perfectly in my project.

Thank you for the explanation. To simplify things, I’ve created a refined [reproduction](https://stackblitz.com/edit/knip-fix-example-y2fu4h2n?file=re-export.js) that focuses solely on the issue we discussed (without the `includeEntryExports` flag). I agree that avoiding duplicate...

Thanks for the update! I just tested it with the new version and can confirm it works as expected.