fix(angular): add namedInputs to expected angular extension properties (#11593)
This commit is contained in:
parent
19dfebd94f
commit
0c25e57bf9
@ -25,6 +25,7 @@ const allowedProjectExtensions = [
|
||||
'configFilePath',
|
||||
'$schema',
|
||||
'generators',
|
||||
'namedInputs',
|
||||
];
|
||||
|
||||
const allowedWorkspaceExtensions = [
|
||||
@ -37,6 +38,7 @@ const allowedWorkspaceExtensions = [
|
||||
'targetDefaults',
|
||||
'files',
|
||||
'generators',
|
||||
'namedInputs',
|
||||
];
|
||||
|
||||
if (!patched) {
|
||||
|
||||
@ -35,6 +35,8 @@ export type TargetDependencies = Record<
|
||||
|
||||
/**
|
||||
* Nx.json configuration
|
||||
*
|
||||
* @note: when adding properties here add them to `allowedWorkspaceExtensions` in adapter/compat.ts
|
||||
*/
|
||||
export interface NxJsonConfiguration<T = '*' | string[]> {
|
||||
/**
|
||||
|
||||
@ -11,6 +11,7 @@ export type WorkspaceJsonConfiguration = ProjectsConfigurations;
|
||||
|
||||
/**
|
||||
* Projects Configurations
|
||||
* @note: when adding properties here add them to `allowedWorkspaceExtensions` in adapter/compat.ts
|
||||
*/
|
||||
export interface ProjectsConfigurations {
|
||||
/**
|
||||
@ -37,6 +38,8 @@ export type ProjectType = 'library' | 'application';
|
||||
|
||||
/**
|
||||
* Project configuration
|
||||
*
|
||||
* @note: when adding properties here add them to `allowedProjectExtensions` in adapter/compat.ts
|
||||
*/
|
||||
export interface ProjectConfiguration {
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user