You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rest destructuring assignments are not safe for closure compiler because tsc/tsickle emits property names as quoted strings. It looks like it should be pretty simple to apply goog.reflect.objectProperty here
Typescript when target is less than ES2018 emits `__rest` helper for object spread syntax,
which references properties' name via string literal hence breaks Closure Compilation.
We transforms such names to appropriate `goog.reflect.objectProperty` calls to make it compatible with
Closure Compiler, as described in angular/tsickle#1047.
Typescript when target is less than ES2018 emits `__rest` helper for object spread syntax,
which references properties' name via string literal hence breaks Closure Compilation.
We transforms such names to appropriate `goog.reflect.objectProperty` calls to make it compatible with
Closure Compiler, as described in angular/tsickle#1047.
rest destructuring assignments are not safe for closure compiler because tsc/tsickle emits property names as quoted strings. It looks like it should be pretty simple to apply
goog.reflect.objectProperty
hereExample Input:
Current Emit:
Proposed Emit:
Related: #241
This probably applies to other emit too
The text was updated successfully, but these errors were encountered: