Nicholas Cunningham 5c10f1ca5c
fix(react-native): skipPackageJson was being ignored (#13513)
Co-authored-by: Nicholas Cunningham <ndcunningham>
2022-11-30 12:46:48 -07:00

8 lines
188 B
TypeScript

export interface Schema {
unitTestRunner?: 'jest' | 'none';
skipFormat?: boolean;
e2eTestRunner?: 'detox' | 'none';
skipPackageJson?: boolean; //default is false
js?: boolean;
}