5 lines
90 B
TypeScript
5 lines
90 B
TypeScript
export interface Schema {
|
|
compiler?: 'babel' | 'swc' | 'tsc';
|
|
skipFormat?: boolean;
|
|
}
|