mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
* feat: initalize WASM/SDK directly after load * fix: default sdk service trying to set log level * feat: wait for sdk to load in sdk service * fix: add required disposable polyfills * feat: update sdk version * feat: replace rc-specific workaround with global polyfill * fix: sdk service tests
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
import "core-js/stable";
|
|
import "core-js/proposals/explicit-resource-management";
|
|
import "zone.js";
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
// Production
|
|
} else {
|
|
// Development and test
|
|
Error["stackTraceLimit"] = Infinity;
|
|
}
|