Recently, I encountered an issue with my Angular 8 web app specifically on Safari where it gets stuck on the index.html page. The debugger error message reads: "Can't find variable: BigInt64Array".
I did not make any upgrades through npm, so I'm unsure why this sudden problem occurred.
To troubleshoot, I changed the target
in tsconfig.js from "es2015" to "ES5". Additionally, I included Safari >= 10
in my browserlist but unfortunately, the issue persists.
Any suggestions or ideas? Thank you.
https://i.sstatic.net/Pr30B.png
package.json
{
"name": "webapi",
"version": "0.0.0",
...
}
tsconfig.json
{
"compileOnSave": false,
"compilerOptions": {
...
}
}
browserlist
# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers
# For additional information regarding the format and rule options, please see:
...