mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
// NOTE: There are numbered polyfills, which are baked and injected directly
|
|
// into `tgui.html`. See how they're baked in `package.json`.
|
|
|
|
import 'core-js/es';
|
|
import 'core-js/web/immediate';
|
|
import 'core-js/web/queue-microtask';
|
|
import 'core-js/web/timers';
|
|
import 'regenerator-runtime/runtime';
|
|
import 'unfetch/polyfill';
|