shultz
shultz3mo ago

finding unused exports

is there a way that works with deno to find unused exports in my project?
1 Reply
Deno AI Helper
Deno AI Helper3mo ago
I wasn't able to find the answer to your question in the official Deno documentation. However, based on general knowledge of JavaScript and TypeScript tooling, you might consider using static analysis tools that are designed to detect unused code. For instance, tools like ESLint have plugins that can help identify unused exports in a project. Please note that this advice is not based on the Deno documentation, and I would recommend double-checking the accuracy of this advice and ensuring that any tool or plugin you consider is compatible with Deno. Since Deno uses TypeScript and supports ES Modules out of the box, a tool that works with these technologies might be applicable to your Deno project. Remember to review the tool's documentation for Deno-specific usage if available.