Krzysztof Brilla
Krzysztof Brilla
stumbled on this when @typescript-eslint/adjacent-overload-signatures became recomended - disabling as annoying
``` "@libs/util/shared": ["libs/util/shared/src/index.ts"], ``` This is how whole NX Monorepo works, so there will be a lot of people having this issue.
> Are you using `baseUrl` to make this work? `baseUrl` is not supported; you'll want to remove it and write that path mapping target relative to the tsconfig that it's...
What about `output.required`? which would error if no listeners would be registred? - of course I can create separate issue if needed, but it seems like aother solution to the...
Yeah, Now I see difrence, in your proposition it’s more about conditional required based on value of some input / directive. So yeah I will open new issue as both...
@eneajaho this could make into interesting blog about signal gotchas - My question is why is there a difrerencle where the computed property is created and how many times is...
I would say use tenary expression in instead `{{ flag ? title : 'Placeholder Text' }}` as for example I like output generated. Input: ```html {{ flag ? title :...
just ran into this as well, macOS
Biome actually put a lot of work into better organize import https://github.com/biomejs/biome/issues/3177 not sure if possible but if formatter is using some biome logic mayby this could also be reused?
Won’t this work: ```typescript const count = signal(null as null | number); const total: number = count() ?? 0; ``` or maybe add mapper ```typescript count((val)=> val !== null ?...