mirror of
https://github.com/bitwarden/browser
synced 2024-12-29 19:32:04 +01:00
16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
import "core-js/stable";
|
|
require("zone.js/dist/zone");
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
// Production
|
|
} else {
|
|
// Development and test
|
|
Error["stackTraceLimit"] = Infinity;
|
|
require("zone.js/dist/long-stack-trace-zone");
|
|
}
|
|
|
|
// Other polyfills
|
|
require("whatwg-fetch");
|
|
require("webcrypto-shim");
|
|
require("date-input-polyfill");
|