persona-community-5/.pnpm-store/v3/files/2e/6e4486c22f53976e8181efbc5502f90584c416e4ffb4c274f657121f42fde90aeab94b93a3311c12b5c63baf8bd3eab91b459ad4bd581b55add15f45fbb3a3
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

17 lines
777 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.withoutProjectParserOptions = withoutProjectParserOptions;
/**
* 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
*/
function withoutProjectParserOptions(opts) {
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- The variables are meant to be omitted
const { EXPERIMENTAL_useProjectService, project, ...rest } = opts;
return rest;
}
//# sourceMappingURL=withoutProjectParserOptions.js.map