export interface Schema { name: string; skipFormat: boolean; directory?: string; tags?: string; unitTestRunner: 'jest' | 'none'; e2eTestRunner: 'cypress' | 'none'; linter: Linter; skipWorkspaceJson?: boolean; mode?: 'universal' | 'spa'; target?: 'server' | 'static'; }