This does not exist and the packages on NPM are have bugs, don't work, have no documentation, or only for React. Therefore I decided to make my own component that actually works.

<app-json-editor *ngIf="Data" [jsonData]="Data | jsonParse" (jsonChange)="jsonDataChange($event)"></app-json-editor>
So in the parent component you can get changes via
jsonDataChange(data:any){
console.debug(`Data Changed ${data}`);
console.debug(`Data Changed:`, JSON.stringify(data, null, 2));
}

This is disabled by default but you can just set this to true, then anytime you make a change it will output. Normally you need to click the Save button.
@Input() autoUpdate:boolean = false;
This may or not be needed depending on how your data is structured but even when I am editing JSON in a plain textbox before I had this component I still had to prepare my data since I am reading from a SQL Server column.
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'jsonParse'
})
export class JsonParsePipe implements PipeTransform {
transform(value: string): any {
try {
return JSON.parse(value);
}
catch (e) {
return value;
}
}
}