I am currently utilizing the Quilljs JavaScript library for a project in Angular.
After installing it with the following command:
npm install --save quill
Everything appears to be functioning correctly, and I am able to import the Quill class into my TypeScript file using:
import * as Quill from 'quill'
However, when I tried to install the latest version directly from GitHub using:
npm --save install quilljs/quill
Even though the installation seemed successful, I encountered an error when trying to import Quill in my TypeScript file:
Module not found: Error: Can't resolve 'quill' in.. webpack: Failed to compile.
Does anyone have any suggestions on how to resolve this issue?