@nx/nest:library
Create a NestJS Library for Nx.
Monorepo World: October 7, 2024Monorepo World: October 7, 2024Join us!
Create a NestJS Library for Nx.
1nx generate library ...
2
1nx g lib ... #same
2
By default, Nx will search for library
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/nest:library ...
2
Show what will be generated without writing to disk:
1nx g library ... --dry-run
2
Generate libs/myapp/mylib:
1nx g lib mylib --directory=myapp
2
(?:^@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*\\/[a-zA-Z0-9-~][a-zA-Z0-9-._~]*|^[a-zA-Z][^:]*)$
Library name.
false
Generate a buildable library.
Create a publishable library.
false
Include a controller with the library.
A directory where the library is placed.
false
Add the Global decorator to the generated module.
The library name used to import it, like @myorg/my-awesome-lib. Must be a valid npm name.
eslint
eslint
, none
The tool to use for running lint checks.
as-provided
, derived
Whether to generate the project name and root directory as provided (as-provided
) or generate them composing their values and taking the configured layout into account (derived
).
false
Include a service with the library.
true
Whether to enable tsconfig strict mode or not.
false
Whether or not to configure the ESLint "parserOptions.project" option. We do not do this by default for lint performance reasons.
false
Don't include the directory in the name of the module of the library.
Add tags to the library (used for linting).
node
jsdom
, node
The test environment for jest, for node applications this should stay as node unless doing DOM testing.
es2021
es5
, es6
, esnext
, es2015
, es2016
, es2017
, es2018
, es2019
, es2020
, es2021
The ES target, Nest suggest using es2021 or higher.
jest
jest
, none
Test runner to use for unit tests.
false
Skip formatting files.
false
Do not update tsconfig.base.json for development experience.
false
Do not add dependencies to package.json
.
true
Split the project configuration into <projectRoot>/project.json rather than including it inside workspace.json
Nx only supports standaloneConfig