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