IE11 Does not support es6, and our project will only export es6 | Community
Skip to main content
Level 3
November 17, 2020
Solved

IE11 Does not support es6, and our project will only export es6

  • November 17, 2020
  • 1 reply
  • 1306 views

Our project’s ui.frontend is rendering our clientlib-site with some ES6 arrow notations. I verified that the arrow notations occur in the dist clientlib-site js file. Not converting ES6 to ES5 causes our site to fail in IE11, which only supports up to ES5.

 

Our tsconfig.json is already set to compile the ui.frontend to ES5 so we are unsure why the compiler is failing to convert everything.

 

tsconfig.json

{ "compilerOptions": { "target": "es5", "module": "es6", "baseUrl": "../ui.frontend", "removeComments": true, "allowJs": true, "preserveConstEnums": true, "allowSyntheticDefaultImports": true, "sourceMap": true }, "include": [ "**/*.ts" ], "exclude": [ "node_modules", "**/tests/*.js", "**/tests/*.ts", "**/target", "**/*.spec.ts", "**/*.spec.js", "*.config.js" ] }
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Umesh_Thakur

As far as I know I can simply say that nothing is doable from AEM here. You need to debug it from your front-end perspective with the help of browser console.

1 reply

Umesh_Thakur
Community Advisor
Umesh_ThakurCommunity AdvisorAccepted solution
Community Advisor
November 18, 2020

As far as I know I can simply say that nothing is doable from AEM here. You need to debug it from your front-end perspective with the help of browser console.