We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Jerome,
I installed Tesseract.js on an Angular project and when I open Internet Explorer 11, I have a white page and a syntax error on :
const recognize = async (image, langs, options) => { const worker = createWorker(options); await worker.load(); await worker.loadLanguage(langs); await worker.initialize(langs); return worker.recognize(image) .finally(async () => { await worker.terminate(); });
I target es5 in my tsconfig.json :
es5
tsconfig.json
"target": "es5", "lib": [ "es2017", "es6", "dom" ]
It seems that the library is not transpiled.
I opened the same issue here : tesseract.js/issues/425.
Thank you in advance for taking the time to answer my problem. Cheers, Patrick.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Jerome,
I installed Tesseract.js on an Angular project and when I open Internet Explorer 11, I have a white page and a syntax error on :
I target
es5
in mytsconfig.json
:It seems that the library is not transpiled.
I opened the same issue here : tesseract.js/issues/425.
Thank you in advance for taking the time to answer my problem.
Cheers, Patrick.
The text was updated successfully, but these errors were encountered: