Raphael Meyer
Raphael Meyer
I encountered a strange issue causing a lint error, because of failed type resolution. I could not find a culprit or workaround while messing around with tsconfig or eslint configuration....
## Describe the Bug Given a service with a dependency injected though a token and a test for the service, the test fails with a `ReferenceError` for the injection token...
I found an issue with the links in the generated documentation. ```typescript type Bar = 'foo' | 'bar' export class Foo { public foo(bar: Bar) : void { } }...