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
With the recent official support of ESLint TypeScript config (ref), when trying to setup the example config in the README file, I get the following typings issue:
'importPlugin.flatConfigs' is possibly 'undefined'.
I created temporary d.ts file as a workaround for now which is not ideal:
This also fix another type issue for importPlugin.flatConfigs.recommended as it currently uses any. Ideally all the types should be fixed to avoid TypeScript config errors.
The text was updated successfully, but these errors were encountered:
With the recent official support of ESLint TypeScript config (ref), when trying to setup the example config in the README file, I get the following typings issue:
'importPlugin.flatConfigs' is possibly 'undefined'.
I created temporary
d.ts
file as a workaround for now which is not ideal:This also fix another type issue for
importPlugin.flatConfigs.recommended
as it currently usesany
. Ideally all the types should be fixed to avoid TypeScript config errors.The text was updated successfully, but these errors were encountered: