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
I want to use NetJS to have some shared code between my typescript and csharp codebase. I am however using --strictNullChecks in typescript 2.0 and would like to keep using that.
netjs generates "AddIntegrationRequest: string = null;" for fields, while for typescript 2.0 this should be
"AddIntegrationRequest: (string | null) = null;"
I already fixed these errors manually for the mscorlib.ts, but i cannot do this for the generated code easily.
Is there some workaround for this problem or a plan to solve?
The text was updated successfully, but these errors were encountered:
I want to use NetJS to have some shared code between my typescript and csharp codebase. I am however using --strictNullChecks in typescript 2.0 and would like to keep using that.
netjs generates "AddIntegrationRequest: string = null;" for fields, while for typescript 2.0 this should be
"AddIntegrationRequest: (string | null) = null;"
I already fixed these errors manually for the mscorlib.ts, but i cannot do this for the generated code easily.
Is there some workaround for this problem or a plan to solve?
The text was updated successfully, but these errors were encountered: