We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e6b9be commit 6ce2c8bCopy full SHA for 6ce2c8b
src/input/findReportedConfiguration.ts
@@ -1,7 +1,7 @@
1
import { Exec } from "../adapters/exec";
2
3
export type DeepPartial<T> = {
4
- [P in keyof T]: T[P] extends {} ? DeepPartial<T[P]> : T[P];
+ [P in keyof T]?: T[P] extends Record<P, T[P]> ? DeepPartial<T[P]> : T[P];
5
};
6
7
export type FindReportedConfigurationDependencies = {
0 commit comments