1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/apps/web/src/polyfills.ts

14 lines
294 B
TypeScript
Raw Normal View History

2021-12-17 15:57:11 +01:00
import "core-js/stable";
require("zone.js/dist/zone");
2018-06-08 05:38:17 +02:00
2021-12-17 15:57:11 +01:00
if (process.env.NODE_ENV === "production") {
// Production
2018-06-08 05:38:17 +02:00
} else {
2021-12-17 15:57:11 +01:00
// Development and test
Error["stackTraceLimit"] = Infinity;
require("zone.js/dist/long-stack-trace-zone");
2018-06-08 05:38:17 +02:00
}
2018-06-06 15:43:28 +02:00
2018-06-08 05:38:17 +02:00
// Other polyfills
2021-12-17 15:57:11 +01:00
require("date-input-polyfill");