(value: Record<string, unknown>, path: string[])
| 143 | } |
| 144 | |
| 145 | function isBuildSettingsEntry(value: Record<string, unknown>, path: string[]): boolean { |
| 146 | return ( |
| 147 | path.includes('entries') && typeof value.key === 'string' && typeof value.value === 'string' |
| 148 | ); |
| 149 | } |
| 150 | |
| 151 | function isSystemDebugStackLocation(displayLocation: string): boolean { |
| 152 | return ( |