@nrwl/nest:resource
Nest Resource Options Schema.
Usage
nx generate resource ...
By default, Nx will search for resource
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/nest:resource ...
Show what will be generated without writing to disk:
nx g resource ... --dry-run
Options
crud
boolean
Default:
true
When true, CRUD entry points are generated.
directory
string
Directory where the generated files are placed.
flat
boolean
Default:
false
Flag to indicate if a directory is created.
language
string
Accepted values:
js
, ts
Nest class language.
name
Required
string
The name of the resource.
project
pRequired
string
The Nest project to target.
skipFormat
boolean
Default:
false
Skip formatting files.
skipImport
boolean
Default:
false
Flag to skip the module import.
type
string
Default:
rest
Accepted values:
rest
, graphql-code-first
, graphql-schema-first
, microservice
, ws
The transport layer.
unitTestRunner
string
Default:
jest
Accepted values:
jest
, none
Test runner to use for unit tests.