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
Can get a weird build error when using ng-packagr on an Angular codebase (Angular 6 with CLI 6.0.8) that doesn't have type annotations on function parameters. Figure this would be fine to do to add the 'any' type for the moment on parameters which seems to fix this issue
function myFn( arg1, arg2 ) {}
Should become:
function myFn( arg1: any, arg2: any ) {}
Will help for people to enable the "noImplicitAny": true option as well.
The text was updated successfully, but these errors were encountered:
Can get a weird build error when using ng-packagr on an Angular codebase (Angular 6 with CLI 6.0.8) that doesn't have type annotations on function parameters. Figure this would be fine to do to add the 'any' type for the moment on parameters which seems to fix this issue
Should become:
Will help for people to enable the
"noImplicitAny": true
option as well.The text was updated successfully, but these errors were encountered: