libs/nx/src/executors/introspection/compat/schema.ts
Properties |
outputFile | |
Type |
string
|
Description
|
file to store the introspection
|
project | |
Type |
string
|
Description
|
Which project to operate on
|
export interface IntrospectionExecutorSchema {
/**
* Which project to operate on
* @examples ["libs/itmp/building-blocks"]
*/
project: string;
/**
* file to store the introspection
* @examples ["libs/itmp/building-blocks/introspection.json"]
*/
outputFile: string;
}