@nrwl/nest:library
Create a NestJS Library for Nx.
Usage
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/nest:library ...
Show what will be generated without writing to disk:
nx g library ... --dry-run
Examples
Generate libs/myapp/mylib:
nx g lib mylib --directory=myapp
Options
buildable
false
Generate a buildable library.
controller
false
Include a controller with the library.
directory
A directory where the library is placed.
global
false
Add the Global decorator to the generated module.
importPath
The library name used to import it, like @myorg/my-awesome-lib. Must be a valid npm name.
linter
eslint
eslint
, none
The tool to use for running lint checks.
name
Library name.
publishable
Create a publishable library.
skipFormat
false
Skip formatting files.
skipTsConfig
false
Do not update tsconfig.base.json for development experience.
service
false
Include a service with the library.
strict
false
Whether to enable tsconfig strict mode or not.
standaloneConfig
true
Split the project configuration into <projectRoot>/project.json rather than including it inside workspace.json
setParserOptionsProject
false
Whether or not to configure the ESLint "parserOptions.project" option. We do not do this by default for lint performance reasons.
tags
Add tags to the library (used for linting).
testEnvironment
node
jsdom
, node
The test environment for jest, for node applications this should stay as node unless doing DOM testing.
target
es6
es5
, es6
, esnext
, es2015
, es2016
, es2017
, es2018
, es2019
, es2020
The ES target, Nest suggest using es6 or higher.
unitTestRunner
jest
jest
, none
Test runner to use for unit tests.