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
If a library like e.g. eslint-plugin-jest is built with typescript and depends on tsutils, then you will get an "unmet peer dependency" warning on typescript if you use that library in a non-ts project.
This can be solved by making the peerDependency on typescript optional in package.json like the @typescript-eslint/* projects. An example can be found here
If a library like e.g.
eslint-plugin-jest
is built with typescript and depends ontsutils
, then you will get an "unmet peer dependency" warning on typescript if you use that library in a non-ts project.This can be solved by making the peerDependency on typescript optional in
package.json
like the@typescript-eslint/*
projects. An example can be found hereThe text was updated successfully, but these errors were encountered: