@nx/node:library
Create a Node Library for an Nx workspace.
Monorepo World: October 7, 2024Monorepo World: October 7, 2024Join us!
Create a Node Library for an Nx workspace.
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/node: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.
tsc
tsc
, swc
The compiler used by the build and test targets.
A directory where the lib is placed
Create a publishable library.
false
Use babel
instead of ts-jest
.
The library name used to import it, like @myorg/my-awesome-lib
. Must be a valid npm name.
false
Generate JavaScript files rather than TypeScript files.
eslint
eslint
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
Use pascal case file names.
Sets the rootDir
for TypeScript compilation. When not defined, it uses the project's root property, or srcRootForCompilationRoot
if it is defined.
false
Keep the module name simple (when using --directory
).
false
Whether to enable tsconfig strict mode or not.
false
Whether or not to configure the ESLint parserOptions.project
. We do not do this by default for lint performance reasons.
Add tags to the library (used for linting).
jsdom
jsdom
, node
The test environment to use if unitTestRunner
is set to jest
.
jest
jest
, none
Test runner to use for unit tests.
false
Skip formatting files.
false
Do not update tsconfig.base.json
for development experience.
true
Split the project configuration into <projectRoot>/project.json
rather than including it inside workspace.json
.
Nx only supports standaloneConfig