@nrwl/workspace:library
Create a TypeScript Library.
Use @nrwl/js:lib instead. This will be removed in Nx v16.
Create a TypeScript Library.
nx generate library ...
nx g lib ... #same
By default, Nx will search for library
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/workspace:library ...
Show what will be generated without writing to disk:
nx g library ... --dry-run
Generate libs/myapp/mylib
:
nx g lib mylib --directory=myapp
^[a-zA-Z].*$
Library name.
A directory where the lib is placed.
The library name used to import it, like @myorg/my-awesome-lib
.
false
Use babel
instead ts-jest
.
false
Generate a buildable library.
false
Generate JavaScript files rather than TypeScript files.
eslint
eslint
The tool to use for running lint checks.
false
Use pascal case file names.
false
Do not update tsconfig.json
for development experience.
true
Whether to enable tsconfig
strict mode or not.
false
Do not generate .babelrc
file. Useful for Node libraries that are not compiled by Babel.
false
Whether or not to configure the ESLint parserOptions.project
option. 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.
true
Split the project configuration into <projectRoot>/project.json
rather than including it inside workspace.json
.
Nx only supports standaloneConfig