Eskild Diderichsen
Eskild Diderichsen
What's the hold up with this? Wouldn't it be as simple as converting these marker interfaces into types unioned with `string`? Example: ```ts interface SafeValue {} type SafeHtml = SafeValue...
I've run into an issue adding `@angular-eslint`. Please advice :) ``` ❯ yarn ng add @angular-eslint/schematics ℹ Using package manager: yarn ✔ Found compatible package version: @angular-eslint/[email protected]. ✔ Package information...
@Lonli-Lokli thanks. I was unaware of these instructions. If anyone else runs into this, this made it work. ```yml #.yarnrc.yml packageExtensions: "@angular-eslint/schematics@*": dependencies: "@angular-devkit/schematics": "*" "@angular-devkit/core": "*" ``` I guess...
> How are we supposed to run the command to update Angular's package while using Yarn PnP? > > Back then I used to run, say, `ng update @angular/cli`. How...
It could print what config files it found and use and perhaps list them in the override order. So something like: ``` Found custom jest configuration: package.json (workspace root) ->...
I just encountered this as well. https://stackblitz.com/edit/angular-y45bu7?file=src/app/app.component.ts None of the `NzUploadFile` properties work and the type of the object [nzBeforeUpload] is called with is `File` ```ts beforeUpload = (file: NzUploadFile,...
This is still an issue in v11.1.0. Isn't this just a type correction? Though I guess this will be a breaking change for people using `strictTemplates`
I've noticed an issue. `@deprecated` will affect the overloads. In the below `func(a)` is also marked as `@deprecated` ```ts interface Foo { /** @deprecated */ func(a, b); func(a); } ```...
I'd appreciate json5 support. But can't that just be the default json parser? json is valid json5 so using a json5 parser to parse json should not be a problem....
Did anyone make some progress on this?