28 lines
704 B
TypeScript
28 lines
704 B
TypeScript
|
|
|
|
|
|
|
|
|
|
/***************************************************************************************************
|
|
* Zone JS is required by Angular itself.
|
|
*/
|
|
import 'zone.js'; // Included with Angular CLI.
|
|
|
|
|
|
|
|
/***************************************************************************************************
|
|
* APPLICATION IMPORTS
|
|
*/
|
|
|
|
/**
|
|
* Date, currency, decimal and percent pipes.
|
|
* Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
|
|
*/
|
|
// import 'intl'; // Run `npm install --save intl`.
|
|
/**
|
|
* Need to import at least one locale-data with intl.
|
|
*/
|
|
// import 'intl/locale-data/jsonp/en';
|
|
|
|
// Add global to window, assigning the value of window itself.
|
|
(window as any).global = window;
|