We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the following code:
import { getByPath } from 'dot-path-value'; type Recursive = { a: string; r: Recursive; }; function x(type: Recursive) { getByPath(type, ''); ~~~~~~~~~~~~ }
we get the following error:
Type of property 'r' circularly references itself in mapped type '{ [K in //keyof Recursive]-?: PathConcat<K & string, Recursive[K]>; }'.(2615)
which makes sense why it would not print until infinity (or at the max TS iterations).
See reproduction
Don't try to infer the fields of the recursive type, or allow inference for only one level deep.
BTW, really cool library, thanks for sharing 🙂
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The issue
Given the following code:
we get the following error:
which makes sense why it would not print until infinity (or at the max TS iterations).
See reproduction
Suggestion
Don't try to infer the fields of the recursive type, or allow inference for only one level deep.
BTW, really cool library, thanks for sharing 🙂
The text was updated successfully, but these errors were encountered: