You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@types/quill is declared as a regular dependencies, which means it is installed at the same time as quill-magic-url. It is then picked up by the Typescript compiler and clashes with any other @types/quill that the consumer would install. I actually encountered this when migrating to Quill v2 where the types are now bundle with the main package.
The solution would be to move @types/quill to devDependencies so it is not installed in downstream project.
The text was updated successfully, but these errors were encountered:
jraoult
changed the title
Move @types/quill to devDependencies
Move @types/quill to devDependencies to prevent clashes downstream
May 28, 2024
@types/quill
is declared as a regular dependencies, which means it is installed at the same time asquill-magic-url
. It is then picked up by the Typescript compiler and clashes with any other@types/quill
that the consumer would install. I actually encountered this when migrating to Quill v2 where the types are now bundle with the main package.The solution would be to move @types/quill to
devDependencies
so it is not installed in downstream project.The text was updated successfully, but these errors were encountered: