@nx/js:library
Create a TypeScript Library.
Create a TypeScript Library.
The @nx/js:lib
generator will generate a library for you, and it will configure it according to the options you provide.
1npx nx g @nx/js:lib libs/mylib
2
By default, the library that is generated when you use this executor without passing any options, like the example above, will be a buildable library, using the @nx/js:tsc
executor as a builder.
You may configure the tools you want to use to build your library, or bundle it too, by passing the --bundler
flag. The --bundler
flag controls the compiler and/or the bundler that will be used to build your library. If you choose tsc
or swc
, the result will be a buildable library using either tsc
or swc
as the compiler. If you choose rollup
or vite
, the result will be a buildable library using rollup
or vite
as the bundler. In the case of rollup
, it will default to the tsc
compiler. If you choose esbuild
, you may use the esbuildOptions
property in your project.json
under the build
target options to specify whether you wish to bundle your library or not.
Generate a buildable library using the @nx/js:tsc
executor. This uses tsc
as the compiler.
1npx nx g @nx/js:lib libs/mylib
2
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/js:library ...
2
Show what will be generated without writing to disk:
1nx g library ... --dry-run
2
A directory where the lib is placed.
tsc
swc
, tsc
, rollup
, vite
, esbuild
, none
The bundler to use. Choosing 'none' means this library is not buildable.
The library name used to import it, like @myorg/my-awesome-lib. Required for publishable library.
none
, eslint
The tool to use for running lint checks.
Library name.
false
Configure the library ready for use with nx release
(https://nx.dev/core-features/manage-releases).
none
, jest
, vitest
Test runner to use for unit tests.
Include a .babelrc configuration to compile TypeScript files
false
Generate JavaScript files rather than TypeScript files.
false
Generate a library with a minimal setup. No README.md generated.
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
Whether to skip TypeScript type checking for SWC compiler.
false
Don't include the directory in the generated file name.
Add tags to the library (used for linting).
node
jsdom
, node
The test environment to use if unitTestRunner is set to jest or vitest.
Use a project.json
configuration file instead of inlining the Nx configuration in the package.json
file.
project
workspace
, project
, npm-scripts
Determines whether the project's executors should be configured in workspace.json
, project.json
or as npm scripts.
false
Skip formatting files.
false
Do not add dependencies to package.json
.
false
Do not update tsconfig.json for development experience.
true
Generate a buildable library.
Use the bundler
option for greater control (swc, tsc, rollup, vite, esbuild, none).
tsc
, swc
The compiler used by the build and test targets
Use the bundler
option for greater control (swc, tsc, rollup, vite, esbuild, none).
Watch the replays of exciting talks on developer tooling and monorepos! Catch all the insightful presentations from the event on our YouTube channel.