UNPKG

647 BTypeScriptView Raw
1/**
2 * Generates a new, generic resolver definition in the given or default project.
3 */
4export interface Schema {
5 /**
6 * When true (the default), creates the new files at the top level of the current project.
7 */
8 flat?: boolean;
9 /**
10 * The name of the new resolver.
11 */
12 name: string;
13 /**
14 * The path at which to create the interface that defines the resolver, relative to the
15 * current workspace.
16 */
17 path?: string;
18 /**
19 * The name of the project.
20 */
21 project?: string;
22 /**
23 * Do not create "spec.ts" test files for the new resolver.
24 */
25 skipTests?: boolean;
26}