Files
memecoin-botV2/.pnpm-store/v10/files/e5/aed77f19007fd3cdb7ff9ffe48ac612ff22980ec40000f7d6d68037e145f605645ef7262c5dfdfb9309a5809d8247881ff07b025aed2b1753cb73854853d07

10 lines
508 B
Plaintext

/**
* Removes options that prompt the parser to parse the project with type
* information. In other words, you can use this if you are invoking the parser
* directly, to ensure that one file will be parsed in isolation, which is much,
* much faster.
*
* @see https://github.com/typescript-eslint/typescript-eslint/issues/8428
*/
export declare function withoutProjectParserOptions<Options extends object>(opts: Options): Omit<Options, 'EXPERIMENTAL_useProjectService' | 'project' | 'projectService'>;