persona-community-5/.pnpm-store/v3/files/f6/3f51ef1ea3a0fc65ca1285e80fc119dbc226ba4985b434d3954d0a9292ce361f1089184fb0fdf63eaefb4b3af1be05f6730b0a5d5179b26d522f160f1405d2
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
746 B
Plaintext

import type { TSESTreeOptions } from '../parser-options';
import type { ParseSettings } from './index';
/**
* Checks for a matching TSConfig to a file including its parent directories,
* permanently caching results under each directory it checks.
*
* @remarks
* We don't (yet!) have a way to attach file watchers on disk, but still need to
* cache file checks for rapid subsequent calls to fs.existsSync. See discussion
* in https://github.com/typescript-eslint/typescript-eslint/issues/101.
*/
export declare function getProjectConfigFiles(parseSettings: Pick<ParseSettings, 'filePath' | 'tsconfigMatchCache' | 'tsconfigRootDir'>, project: TSESTreeOptions['project']): string[] | null;
//# sourceMappingURL=getProjectConfigFiles.d.ts.map