Home / Type/ ParseForESLintOptions Type — react Architecture

ParseForESLintOptions Type — react Architecture

Architecture documentation for the ParseForESLintOptions type/interface in hermes-eslint.d.ts from the react codebase.

Entity Profile

Dependency Diagram

graph TD
  340caf1e_92b0_7b5b_c6fa_32a0fcbffc46["ParseForESLintOptions"]
  ab26e32c_bc31_c3e4_5822_9806af4ed6f9["hermes-eslint.d.ts"]
  340caf1e_92b0_7b5b_c6fa_32a0fcbffc46 -->|defined in| ab26e32c_bc31_c3e4_5822_9806af4ed6f9
  style 340caf1e_92b0_7b5b_c6fa_32a0fcbffc46 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

compiler/packages/eslint-plugin-react-compiler/src/types/hermes-eslint.d.ts lines 11–56

  type ParseForESLintOptions = {
    /**
     * Whether the whole script is executed under node.js environment.
     * When enabled, the scope manager adds a function scope immediately following the global scope.
     * Defaults to `false`.
     */
    globalReturn: boolean;

    /**
     * The identifier that's used for JSX Element creation (after transpilation).
     * This should not be a member expression - just the root identifier (i.e. use "React" instead of "React.createElement").
     *
     * To use the new global JSX transform function, you can explicitly set this to `null`.
     *
     * Defaults to `"React"`.
     */
    jsxPragma: string | null;

    /**
     * The identifier that's used for JSX fragment elements (after transpilation).
     * If `null`, assumes transpilation will always use a member on `jsxFactory` (i.e. React.Fragment).
     * This should not be a member expression - just the root identifier (i.e. use "h" instead of "h.Fragment").
     * Defaults to `null`.
     */
    jsxFragmentName: string | null;

    /**
     * The source type of the script.
     */
    sourceType: 'script' | 'module';

    /**
     * Ignore <fbt /> JSX elements when adding references to the module-level `React` variable.
     * FBT is JSX that's transformed to non-JSX and thus references differently
     *
     * https://facebook.github.io/fbt/
     */
    fbt: boolean;

    /**
     * Support experimental component syntax
     *
     * Defaults to `true`.
     */
    enableExperimentalComponentSyntax?: boolean;
  };

Frequently Asked Questions

What is the ParseForESLintOptions type?
ParseForESLintOptions is a type/interface in the react codebase, defined in compiler/packages/eslint-plugin-react-compiler/src/types/hermes-eslint.d.ts.
Where is ParseForESLintOptions defined?
ParseForESLintOptions is defined in compiler/packages/eslint-plugin-react-compiler/src/types/hermes-eslint.d.ts at line 11.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free