@nx/gatsby
Version:
Gatsby Plugin for Nx
14 lines (12 loc) • 312 B
TypeScript
import { SupportedStyles } from '@nx/react';
export interface Schema {
name: string;
tags?: string;
style: SupportedStyles;
directory?: string;
unitTestRunner?: 'jest' | 'none';
e2eTestRunner?: 'cypress' | 'none';
js?: boolean;
setParserOptionsProject?: boolean;
standaloneConfig?: boolean;
}