Joost Koehoorn

Results 268 comments of Joost Koehoorn

> I also think that this NG8107 warning is broken. For example: > > > > 1. I have an optional `templateForm` property in my TS class of type `UntypedFormGroup`...

> > I'd also like to turn off this warning. > > > > ``` > > "angularCompilerOptions": { > > "strictNullChecks": false > > } > > ``` Please...

It appears there is some confusion which optional chain is redundant. It's always the one to the _left_ of the underlined property. If I recall correctly it wasn't possible to...

@teug91 While I can repro using Mobile Chrome on iOS, I cannot get this to break using Mobile Safari. That's a problem for debugging, as I can only connect to...

This warnings look suspicious: ``` warning There's already a package called "@angular/animations" registered. This command has had no e ffect. If this command was run in another folder with the...

And the warnings indicate that there are pre-existing links. I can't tell from that warning where those links were created, but it may be that you'll first have to unlink...

The `build` script does exist: https://github.com/angular/angular/blob/e58207e444af7347699ff9f01492f886cd09da06/package.json#L28

@felikf Thanks for reporting, that's an interesting and valid case we didn't consider for the template type checker!

@felikf thanks, that one is known. You can find more info in #30080.

Pipes with generic type parameters are not currently supported. In your case the `T` type parameter can be dropped in favor of using `unknown` where it's used.