Interface: Workspace
Deprecated
use ProjectsConfigurations or NxJsonConfiguration
Hierarchy
โณ
Workspace
Table of contents
Properties
- affected: NxAffectedConfig
- cacheDirectory: string
- cli: Object
- defaultBase: string
- defaultProject: string
- extends: string
- generators: Object
- implicitDependencies: ImplicitDependencyEntry<string[] | "*">
- installation: NxInstallationConfiguration
- namedInputs: Object
- neverConnectToCloud: boolean
- nxCloudAccessToken: string
- nxCloudEncryptionKey: string
- nxCloudId: string
- nxCloudUrl: string
- parallel: number
- plugins: PluginConfiguration[]
- pluginsConfig: Record<string, Record<string, unknown>>
- projects: Record<string, ProjectConfiguration>
- release: NxReleaseConfiguration
- sync: NxSyncConfiguration
- targetDefaults: TargetDefaults
- tasksRunnerOptions: Object
- useDaemonProcess: boolean
- useInferencePlugins: boolean
- useLegacyCache: boolean
- version: number
- workspaceLayout: Object
Properties
affected
โข Optional
affected: NxAffectedConfig
Default options for nx affected
Deprecated
use defaultBase instead. For more information see https://nx.dev/deprecated/affected-config#affected-config
Inherited from
cacheDirectory
โข Optional
cacheDirectory: string
Changes the directory used by Nx to store its cache.
Inherited from
NxJsonConfiguration.cacheDirectory
cli
โข Optional
cli: Object
Default generator collection. It is used when no collection is provided.
Type declaration
Name | Type |
---|---|
defaultProjectName? | string |
packageManager? | PackageManager |
Inherited from
defaultBase
โข Optional
defaultBase: string
Default value for --base used by nx affected
and nx format
.
Inherited from
NxJsonConfiguration.defaultBase
defaultProject
โข Optional
defaultProject: string
Default project. When project isn't provided, the default project will be used. Convenient for small workspaces with one main application.
Inherited from
NxJsonConfiguration.defaultProject
extends
โข Optional
extends: string
Optional (additional) Nx.json configuration file which becomes a base for this one
Inherited from
generators
โข Optional
generators: Object
List of default values used by generators.
These defaults are global. They are used when no other defaults are configured.
Example:
1{
2 "@nx/react": {
3 "library": {
4 "style": "scss"
5 }
6 }
7}
8
Index signature
โช [collectionName: string
]: { [generatorName: string]
: any
; }
Inherited from
NxJsonConfiguration.generators
implicitDependencies
โข Optional
implicitDependencies: ImplicitDependencyEntry
<string
[] | "*"
>
Map of files to projects that implicitly depend on them
Deprecated
use namedInputs instead. For more information see https://nx.dev/deprecated/global-implicit-dependencies#global-implicit-dependencies
Inherited from
NxJsonConfiguration.implicitDependencies
installation
โข Optional
installation: NxInstallationConfiguration
Configures the Nx installation for a repo. Useful for maintaining a separate set of dependencies for Nx + Plugins compared to the base package.json, but also useful for workspaces that don't have a root package.json + node_modules.
Inherited from
NxJsonConfiguration.installation
namedInputs
โข Optional
namedInputs: Object
Named inputs targets can refer to reduce duplication
Index signature
โช [inputName: string
]: (string
| InputDefinition
)[]
Inherited from
NxJsonConfiguration.namedInputs
neverConnectToCloud
โข Optional
neverConnectToCloud: boolean
Set this to true to disable connection to Nx Cloud
Inherited from
NxJsonConfiguration.neverConnectToCloud
nxCloudAccessToken
โข Optional
nxCloudAccessToken: string
If specified Nx will use nx-cloud by default with the given token. To use a different runner that accepts an access token, define it in tasksRunnerOptions
Inherited from
NxJsonConfiguration.nxCloudAccessToken
nxCloudEncryptionKey
โข Optional
nxCloudEncryptionKey: string
Specifies the encryption key used to encrypt artifacts data before sending it to nx cloud.
Inherited from
NxJsonConfiguration.nxCloudEncryptionKey
nxCloudId
โข Optional
nxCloudId: string
If specified Nx will use nx-cloud by default with the given cloud id. To use a different runner that accepts a cloud id, define it in tasksRunnerOptions
Inherited from
nxCloudUrl
โข Optional
nxCloudUrl: string
Specifies the url pointing to an instance of nx cloud. Used for remote caching and displaying run links.
Inherited from
NxJsonConfiguration.nxCloudUrl
parallel
โข Optional
parallel: number
Specifies how many tasks can be run in parallel.
Inherited from
plugins
โข Optional
plugins: PluginConfiguration
[]
Plugins for extending the project graph
Inherited from
pluginsConfig
โข Optional
pluginsConfig: Record
<string
, Record
<string
, unknown
>>
Configuration for Nx Plugins
Inherited from
NxJsonConfiguration.pluginsConfig
projects
โข projects: Record
<string
, ProjectConfiguration
>
Projects' projects
Overrides
ProjectsConfigurations.projects
release
โข Optional
release: NxReleaseConfiguration
Configuration for nx release
(versioning and publishing of applications and libraries)
Inherited from
sync
โข Optional
sync: NxSyncConfiguration
Configuration for the nx sync
command.
Inherited from
targetDefaults
โข Optional
targetDefaults: TargetDefaults
Dependencies between different target names across all projects
Inherited from
NxJsonConfiguration.targetDefaults
tasksRunnerOptions
โข Optional
tasksRunnerOptions: Object
Deprecated
Custom task runners will no longer be supported in Nx 21. Use Nx Cloud or Nx Powerpack instead. Available Task Runners for Nx to use
Index signature
โช [tasksRunnerName: string
]: { options?
: any
; runner?
: string
}
Inherited from
NxJsonConfiguration.tasksRunnerOptions
useDaemonProcess
โข Optional
useDaemonProcess: boolean
Set this to false to disable the daemon.
Inherited from
NxJsonConfiguration.useDaemonProcess
useInferencePlugins
โข Optional
useInferencePlugins: boolean
Set this to false to disable adding inference plugins when generating new projects
Inherited from
NxJsonConfiguration.useInferencePlugins
useLegacyCache
โข Optional
useLegacyCache: boolean
Use the legacy file system cache instead of the db cache
Inherited from
NxJsonConfiguration.useLegacyCache
version
โข version: number
Version of the configuration format
Inherited from
ProjectsConfigurations.version
workspaceLayout
โข Optional
workspaceLayout: Object
Where new apps + libs should be placed
Type declaration
Name | Type |
---|---|
appsDir? | string |
libsDir? | string |