Chau Tran
Chau Tran
I also ran into this problem while testing [Signal Input Transform](https://itnext.io/how-to-enjoy-signal-based-input-right-now-56efecaeee98) by @gmfun. Would it make sense to adjust `transform` signature also to accept the component instance as well as...
@JoostK Using `abstract` classes which are meant to be extended only. The following example worked in Angular 9 ```typescript export abstract class Destroyable implements OnDestroy { protected $destroyed = new...
@matthewjh isn't that what Ivy does? And also, I'm not against adding a selector-less decorator like `Directive` but the above snippet did work in Angular 9. So either this is...
@thw0rted `Component` is a `Directive` with `template`. Does your base have `template`? No? Then it is a `Directive`
This is not possible as ClassDecorator does not have information of the members.
@Quentinmht thank you. The example on the documentations assume Nodejs. Browser might behave a little different. Nonetheless, I'll test out the reproduce and will report soon! Thanks again!
@Quentinmht @lauridsen @nbisges Sorry for taking so long on this. I tested out the reproduction by @Quentinmht and can confirm the issue. The problem is Decorator Metadata doesn't seem to...
Hi @SkyaTura sorry for the late response, can you provide a simple reproduce?
The `inlinedDepsDestOutputRecord` has the potential values: ```json { "@my-workspace/my-lib": "dist/libs/my-lib/src", "@my-workspace/my-lib-two": "dist/libs/my-lib-two/src", ... } ``` In other words, `inlinedDepsDestOutputRecord` is a map between the path alias (`tsconfig#paths`) to the `outputPath`...
@kyjus25 what do you think the schematic should do?