I'm using Quilljs (javascript library) for an Angular project.
when installed by:
npm install --save quill
All seems to work well and Quill class can be imported to typeScript file via:
import * as Quill from 'quill'
But when attempting to install the latest version from GitHub by:
npm --save install quilljs/quill
although the installation seems to be successfull, when attempting to import Quill in the typescript file, i get:
Module not found: Error: Can't resolve 'quill' in.. webpack: Failed to compile.
Any ideas?
import * as Quill from 'quilljs/quill'?