We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e45d76 commit 83e629bCopy full SHA for 83e629b
nativescript-angular/platform.ts
@@ -18,13 +18,17 @@ import {
18
PlatformRef,
19
InjectionToken,
20
ViewEncapsulation,
21
- createPlatformFactory
+ createPlatformFactory,
22
+ MissingTranslationStrategy
23
} from "@angular/core";
24
-// Work around a TS bug requiring an imports of InjectionToken and ViewEncapsulation without using them
25
+// Work around a TS bug requiring an imports of
26
+// InjectionToken, ViewEncapsulation and MissingTranslationStrategy
27
+// without using them
28
if ((<any>global).___TS_UNUSED) {
29
(() => InjectionToken)();
30
(() => ViewEncapsulation)();
31
+ (() => MissingTranslationStrategy)();
32
}
33
34
// Register DOM adapter, if possible. Dynamic platform only!
0 commit comments