Last change
on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
975 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | * Creates a new, generic library project in the current workspace.
|
---|
| 3 | */
|
---|
| 4 | export interface Schema {
|
---|
| 5 | /**
|
---|
| 6 | * The path at which to create the library's public API file, relative to the workspace root.
|
---|
| 7 | */
|
---|
| 8 | entryFile?: string;
|
---|
| 9 | /**
|
---|
| 10 | * Apply lint fixes after generating the library.
|
---|
| 11 | * @deprecated Use "ng lint --fix" directly instead.
|
---|
| 12 | */
|
---|
| 13 | lintFix?: boolean;
|
---|
| 14 | /**
|
---|
| 15 | * The name of the library.
|
---|
| 16 | */
|
---|
| 17 | name?: string;
|
---|
| 18 | /**
|
---|
| 19 | * A prefix to apply to generated selectors.
|
---|
| 20 | */
|
---|
| 21 | prefix?: string;
|
---|
| 22 | /**
|
---|
| 23 | * Do not install dependency packages.
|
---|
| 24 | */
|
---|
| 25 | skipInstall?: boolean;
|
---|
| 26 | /**
|
---|
| 27 | * Do not add dependencies to the "package.json" file.
|
---|
| 28 | */
|
---|
| 29 | skipPackageJson?: boolean;
|
---|
| 30 | /**
|
---|
| 31 | * Do not update "tsconfig.json" to add a path mapping for the new library. The path mapping
|
---|
| 32 | * is needed to use the library in an app, but can be disabled here to simplify development.
|
---|
| 33 | */
|
---|
| 34 | skipTsConfig?: boolean;
|
---|
| 35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.