2019-08-09 11:15:40 -04:00

13 lines
258 B
TypeScript

import { Linter } from '@nrwl/workspace';
export interface Schema {
name: string;
skipFormat: boolean;
skipPackageJson: boolean;
directory?: string;
unitTestRunner: 'jest' | 'none';
linter: Linter;
tags?: string;
frontendProject?: string;
}