When a component file is referenced in a route as in the example below, the component is reported as unused.
It is expected these would not be reported as missing as identified by the import and the default export.
Example route:
...
{
path: "some/route",
loadComponent: () => import ("@app/some.component"),
}
...
Component reported as unused...
export default class SomeComponent {
...
}