@nrwl/angular:application
Creates an Angular application.
Creates an Angular application.
Create an application named my-app
:
nx g @nrwl/angular:application my-app
nx generate application ...
nx g app ... #same
By default, Nx will search for application
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/angular:application ...
Show what will be generated without writing to disk:
nx g application ... --dry-run
^[a-zA-Z].*$
The name of the application.
The directory of the new application.
false
Generate a routing module.
Generate an application that is setup to use standalone components. Note: This is only supported in Angular versions >= 14.1.0
false
Whether to configure Tailwind CSS for the application.
Backend project that provides data to this application. This sets up proxy.config.json
.
cypress
cypress
, none
Test runner to use for end to end (E2E) tests.
false
Specifies if the style will be in the ts file.
false
Specifies if the template will be in the ts file.
eslint
eslint
, none
The tool to use for running lint checks.
false
Generate a Angular app with a minimal setup.
html-selector
The prefix to apply to generated selectors.
The port at which the remote application should be served.
css
css
, scss
, sass
, less
The file extension to be used for style files.
false
Skip creating spec files.
true
Create an application with stricter type checking and build optimization options.
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 application (used for linting).
jest
jest
, none
Test runner to use for unit tests.
Emulated
, None
, ShadowDom
Specifies the view encapsulation strategy.
false
Create an application at the root of the workspace.
false
Skip formatting files.
false
Do not add dependencies to package.json
.
true
Split the project configuration into <projectRoot>/project.json
rather than including it inside workspace.json
.
Nx only supports standaloneConfig