Jack Hsu 0923dab318 feat(react): adds and updates React schematics with more options
- Added component schematic that adds to existing project.
    * Supports CSS-in-JS styles, functional components, etc.
- Lib and app schematics now support new style, funtional components options (same as component)
2019-05-22 17:06:46 -04:00

10 lines
181 B
TypeScript

export interface Schema {
name: string;
project: string;
style?: string;
skipTests?: boolean;
export?: boolean;
pascalCaseFiles?: boolean;
classComponent?: boolean;
}