Hello.
I created vite project npm create vite@latest (react + typescript) (node 18.15.0)
then i installed "mathpix-markdown-it": "1.2.13"
then i used it in my project
import { MathpixMarkdownModel as MM, TMarkdownItOptions } from 'mathpix-markdown-it';
const mathpixOptions: TMarkdownItOptions = {};
function App() {
const generatedHtml = {
__html:
MM.markdownToHTML(
'',
mathpixOptions,
)
};
return (
<>
</>
)
}
and finally i saw error in console
TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them

how can i fix it?
Hello.
I created vite project
npm create vite@latest(react + typescript) (node 18.15.0)then i installed
"mathpix-markdown-it": "1.2.13"then i used it in my project
and finally i saw error in console

TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to themhow can i fix it?