Is there some plug-in of Visual Studio Code or other means that could help us to tidy and organize the imports and references quickly and effectively?
For example, there are maybe hundreds of imports like this
import { AutoCompleteModule,InputSwitchModule } from 'primeng/primeng';
import { ListboxModule } from 'primeng/primeng';
could be converted to similarily
import { AutoCompleteModule,
InputSwitchModule,
ListboxModule } from 'primeng/primeng';
Or other functions like automatically removing those unused imports and declarations from the app.module or from all components throughout the project?
Thanks for any feedback!