Angular Rich text Editor Quill reported an error

to use a rich text editor in the project, I found Quill

I introduced

into app after npm install ng2-quill-editor.
import { QuillEditorModule } from "ng2-quill-editor";

imports: [
    QuillEditorModule, //
  ],



an error will be reported at this time

clipboard.png

how to solve this problem, bosses, or is there any other rich text editor that can be used in angular

Mar.02,2021

install npm install-- save-dev @ types/node
configure tsconfig.app.json

"compilerOptions": {
"types": ["node", "jasmine"]
}

Menu