Typescript 3.5
Created by: lguychard
- Use latest Typescript release 3.5.1 instead of an
-rc
version - Use builtin
Omit<>
helper type (instead of importing it fromutility-types
) - Refactor
Pick<T, Exclude<keyof T, 'someKey'>>
to useOmit<>
where applicable