ngxtension / ngxtension-platform

Utilities for Angular
https://ngxtension.netlify.app/
MIT License
592 stars 87 forks source link

fix(plugin): support outputs without inline initialization #497

Open ShacharHarshuv opened 3 weeks ago

ShacharHarshuv commented 3 weeks ago

Previously, this script would fail with a cryptic message (cannot read property of undefined (reading includes)) for input like:

@Output() myOutput: EventEmitter<string>;

The changes support that use case and: