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
Trying to make ESLint lint AND ts-check itself, I encountered the error
Parsing error: ESLint was configured to run on <tsconfigRootDir>/.eslintrc.cjs using parserOptions.project: /tsconfig.json
However, that TSConfig does not include this file. Either:
Change ESLint's list of included files to not include this file
Alternatively, you can add parserOptions: { project: null } to an override for the files you wish to exclude. Note that { project: undefined } will not work.
Trying to make ESLint lint AND ts-check itself, I encountered the error
Which could be fixed with
Which requires parserOptions.project to be nullable as per above link
The text was updated successfully, but these errors were encountered: