We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When passing any of the flat configs to tseslint.config, there is a TypeScript error due to the files property being possibly undefined:
tseslint.config
files
export default tseslint.config( toml.configs["flat/standard"], )
Types of property 'files' are incompatible. Type 'undefined' is not assignable to type '(string | string[])[]'
This seems to just be an issue with the types because the files property is definitely defined correctly in the base config.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When passing any of the flat configs to
tseslint.config
, there is a TypeScript error due to thefiles
property being possibly undefined:This seems to just be an issue with the types because the
files
property is definitely defined correctly in the base config.The text was updated successfully, but these errors were encountered: