You should be using ngModelChange
<textarea cols="25" [ngModel]="data" (ngModelChange)="doSomething($event)"></textarea>
LIVE DEMO
Update:
(change)
event will work in textarea but it is triggered on blur and text
changed inside the text area
DEMO