Last change
on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
647 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * Generates a new, generic resolver definition in the given or default project.
|
---|
3 | */
|
---|
4 | export 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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.