In #37221 we disabled tsickle passes from transforming the tsc output that is used to publish all Angular framework and components packages (@angular/*). This change however revealed a bug in the ngc that caused __decorate and __metadata calls to still be emitted in the JS code even though we don't depend on them. Additionally it was these calls that caused code in @angular/material packages to fail at runtime due to circular dependency in the emitted decorator code documeted as https://github.com/microsoft/TypeScript/issues/27519. This change partially rolls back #37221 by reenabling the decorator to static fields (static properties) downleveling. This is just a temporary workaround while we are also fixing root cause in `ngc` - tracked as FW-2199. Resolves FW-2198. Related to FW-2196 PR Close #37317
18 lines
938 B
JavaScript
18 lines
938 B
JavaScript
import "rxjs";
|
|
|
|
import "rxjs/operators";
|
|
|
|
const __globalThis = "undefined" !== typeof globalThis && globalThis;
|
|
|
|
const __window = "undefined" !== typeof window && window;
|
|
|
|
const __self = "undefined" !== typeof self && "undefined" !== typeof WorkerGlobalScope && self instanceof WorkerGlobalScope && self;
|
|
|
|
const __global = "undefined" !== typeof global && global;
|
|
|
|
const _global = __globalThis || __global || __window || __self;
|
|
|
|
if (ngDevMode) _global.$localize = _global.$localize || function() {
|
|
throw new Error("It looks like your application or one of its dependencies is using i18n.\n" + "Angular 9 introduced a global `$localize()` function that needs to be loaded.\n" + "Please run `ng add @angular/localize` from the Angular CLI.\n" + "(For non-CLI projects, add `import '@angular/localize/init';` to your `polyfills.ts` file.\n" + "For server-side rendering applications add the import to your `main.server.ts` file.)");
|
|
};
|