2019-07-24 10:27:47 -04:00

12 lines
246 B
TypeScript

export interface Schema {
name: string;
prefix?: string;
style?: string;
skipFormat: boolean;
directory?: string;
tags?: string;
unitTestRunner: 'jest' | 'none';
e2eTestRunner: 'cypress' | 'none';
linter: 'eslint' | 'tslint';
}