Files
memecoin-botV2/.pnpm-store/v10/files/88/db08dbf8df5db1a8bf79ee2f83dabedef21dd9be36af99dae2ff1796e8c177f9f84f199e8a6ae92f6d9353148045d9e4f69dd86da03c44828a80cb5fc50542

13 lines
695 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;