Skip to content

Instantly share code, notes, and snippets.

@ylyra
Forked from dillionverma/lucide-react.d.ts
Created April 30, 2025 13:24
Show Gist options
  • Select an option

  • Save ylyra/a55f3154d59c48035d717975a37e2746 to your computer and use it in GitHub Desktop.

Select an option

Save ylyra/a55f3154d59c48035d717975a37e2746 to your computer and use it in GitHub Desktop.
How to stop @radix-ui, next/router and lucide-react auto-imports
declare module 'lucide-react' {
export * from 'lucide-react/dist/lucide-react.suffixed'
}
{
"typescript.preferences.autoImportSpecifierExcludeRegexes": [
"@radix-ui",
"next/router",
"next/dist",
"^lucide-react/dist/lucide-react.suffixed$",
]
}
{
"compilerOptions": {
"baseUrl": ".",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment