We are upgrading our system to angular 9.1.1, which has Typescript 3.8.3. The @angular-devkit/build-angular@0.901.1 use core-js@3.6.4 underneath.
We would like to start using the optional chaining feature in Typescript rather than lodash _.get e.g.
object?.a?.b?.c
rather than
_.get(object, 'a.b.c', 'default');
However, we still need to support 30% of the IE users. Does anyone know if it's support by IE by default? If not, is there anyway that we can turn on support, e.g. adding configure in polyfill.ts? I searched through the core-js and didn't see anything related to optional chaining.
Thanks a lot!