What is the use of polyfills.ts file in Angular

63,118

Solution 1

Polyfills in angular are few lines of code which make your application compatible for different browsers. The code we write is mostly in ES6(New Features: Overview and Comparison) and is not compatible with IE or firefox and needs some environment setups before being able to be viewed or used in these browsers.

Polyfills.ts was provided by angular to help you do away with need to specifically setup everything.

From Docs

Angular is built on the latest standards of the web platform. Targeting such a wide range of browsers is challenging because they do not support all features of modern browsers.

Read more here

Solution 2

Basically polyfills compatible for different browsers especially IE old versions IE8, IE9 and IE10. Angular has new features which written in ES6 and typescript, so polyfills helps to compatible with different browsers.

Solution 3

Angular is written in ES6+ language specification. As many of its features are not supported by all the browsers. So by defining them in polyfill it will be compatible in the given browser.

Solution 4

This file includes polyfills needed by Angular and is loaded before the app. You can add your own extra polyfills to this file.

This file is divided into 2 sections:

  1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
  2. Application imports. Files imported after ZoneJS should be loaded before your main file.
Share:
63,118
Praveen Ojha
Author by

Praveen Ojha

Software Engineer at Zeta India

Updated on July 08, 2022

Comments

  • Praveen Ojha
    Praveen Ojha almost 2 years

    polyfills.ts file is auto generated while creating an Angular application using Angular Cli. Can anyone explain me what is the use of polyfills.ts file in Angular application.