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
I have upgraded to the latest cli beta 31 - i am using the spread operator in my ngModules
export const arr = (obj) => Object.keys(obj).map(key => obj[key]);
ERROR in Error encountered resolving symbol values statically. Function calls are not supported. Consider replacing the function or lambda with a reference to an exported function
Is this something to do with AOT compilation - is there a solution?
The text was updated successfully, but these errors were encountered:
I have upgraded to the latest cli beta 31 - i am using the spread operator in my ngModules
export const arr = (obj) => Object.keys(obj).map(key => obj[key]);
and as follows:
declarations: [
...arr(frontend),
...arr(backend),
and i am getting the same error as many:
ERROR in Error encountered resolving symbol values statically. Function calls are not supported. Consider replacing the function or lambda with a reference to an exported function
Is this something to do with AOT compilation - is there a solution?
The text was updated successfully, but these errors were encountered: