Faulty auto import with path alias
问题 I'm having strange issue when auto importing services/components from folder provided with path alias within Angular 9 application. Those are my aliases defined in tsconfig.json "paths": { "@core/*": ["app/core/*"], "@shared/*": ["app/shared/*"], "@state/*": ["app/state/*"] } Then in Core folder I'm reexporting all services in index file ( app/core/index.ts ) export * from './sse/sse.service'; export * from './rack/rack.service'; Now when I'm injecting the service in a constructor the