I\'ve built a basic app in Angular, but I have encountered a strange issue where I cannot inject a service into one of my components. It injects fine into any of the three o
Another possibility is not having emitDecoratorMetadata set to true in tsconfig.json
emitDecoratorMetadata
{ "compilerOptions": { ... "emitDecoratorMetadata": true, ... } }