Problem was in the file tsconfig.json
at
{
"compilerOptions": {
"jsx": "preserve"
}
}
because this is in the documentation and last month was corrected:
{
"compilerOptions": {
"jsx": "react-jsx"
}
}
Now my plugin work Thanks everyone!