export interface TsConfigJson { extends?: string | string[]; compilerOptions?: { types?: string[]; jsxImportSource?: string; plugins?: Array; [key: string]: unknown; }; contentMappers?: { package: string; }[]; references?: Array<{ path: string; }>; } export interface ContentMapperManifest { exec?: string[]; }