This package wraps the tinymce editor as an Angular Component.
npm install @ec.components/tinymce --saveimport { TinymceModule } from '@ec.components/tinymce';
@NgModule({
imports: [TinymceModule],
})
export class AppModule {}"styles": [
"node_modules/tinymce/skins/lightgray/skin.min.css",
"node_modules/tinymce/skins/lightgray/content.min.css"
],<ec-tinymce [(ngModel)]="html" (change)="change($event)"></ec-tinymce>