Igor Oleinikov

Results 21 comments of Igor Oleinikov

I was sure that microsoft/service-fabric-issues#194 was about that change, but apparently it only covered services projects and not .sfproj. Is any plans to support SDK-based format of `.sfproj` that would...

I was also wondering if C#8 nullability feature could be used instead. The issue I see with that is changing the default behavior from interpreting a bare reference type from...

I actually think it's not a blocker at all. I experimented with non-null introspection and found it was very easy to analyse manually by expecting the attribute. It is very...

I probably was under wrong impression that it was well documented :) Here's what I used, an official spec and a couple of blog posts: - https://github.com/dotnet/roslyn/blob/master/docs/features/nullable-metadata.md - https://codeblog.jonskeet.uk/2019/02/10/nullableattribute-and-c-8/ -...

@shoe-diamente `NullableAttribute` definitely exists if you compiled a C#8 program with `#nullable`. This is the way how the compiler injects that information. I can create a simple gist later this...

It looks like they changed the way the attribute gets injected since I experimented with it last time. Before, it was a type defined in "compiler services" assembly (don't remember...

Thank you for filing a request. CRA2 uses Babel to transpile code and does not use any webpack typescript loaders. First of all, there's another solution for Babel: [`babel-plugin-styled-components`](https://github.com/styled-components/babel-plugin-styled-components). It...

That's right, this plug-in is not for Babel. It is for such setups where the TypeScript compiler is used.

Hm, it's not supported because `withConfig` was not part of the public surface. I guess it was changed some time ago. I would argue if you use `useConfig` manually it...

Thank you for reporting. I will see what it might be. A minimal repro code would be useful. Or at least an example of how your components look like with...