I am using an ui framework uses JSX syntax but not React/JSX, flow 0.53 will report 'Identifier React count not resolve name' error on JSX statements.
Is there a config item to disable React/JSX related checking?
What function does your jsx call? If it's Foo then you can add @jsx Foo to your header comment.
Thank you. Worked now by add @jsx tag.
Is it possible to make @jsx <whatever> globally as an option in .flowconfig?
Most helpful comment
Is it possible to make
@jsx <whatever>globally as an option in.flowconfig?