6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
export interface Schema {
|
|
unitTestRunner: 'jest' | 'none';
|
|
e2eTestRunner: 'cypress' | 'none';
|
|
skipFormat: boolean;
|
|
}
|