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
A recent update to aurelia-templating appears to have created a compile time issue with this library:
node_modules/aurelia-typed-observable-plugin/dist/types/patches.d.ts:8:9 - error TS2717: Subsequent property declarations must have the same type. Property 'name' must be of type 'any', but here has type 'string'.
8 name: string;
~~~~
node_modules/aurelia-templating/dist/types/aurelia-templating.d.ts:1568:2
1568 name: any;
~~~~
'name' was also declared here.
As evidenced in the error message, aurelia-templating is now defining BindableProperty.Name as an any instead of a string.
A recent update to aurelia-templating appears to have created a compile time issue with this library:
As evidenced in the error message, aurelia-templating is now defining BindableProperty.Name as an any instead of a string.
It appears to be due to this change in the aurelia-templating library made to handle this vulnerability issue in the aurelia-framework:
The text was updated successfully, but these errors were encountered: