Angular 7 application not working on internet explorer. It says invalid character in vendor.js
I have already apply polyfills.ts changes but it still not working.
my tsconfig.json =>
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
]
}
}
solved
I found a module 'identicons' which containing back-ticks and removed it from the project and the problem solved. Thank you all for your helps guys.