@nx/rollup:configuration

Add Rollup Configuration to a project.

Usage

1nx generate configuration ... 2
1nx g rollup-project ... #same 2

By default, Nx will search for configuration in the default collection provisioned in workspace.json.

You can specify the collection explicitly as follows:

1nx g @nx/rollup:configuration ... 2

Show what will be generated without writing to disk:

1nx g configuration ... --dry-run 2

Options

main

entryFile
string

Path relative to the workspace root for the main entry file. Defaults to '<projectRoot>/src/main.ts'.

project

string

The name of the project.

tsConfig

string

Path relative to the workspace root for the tsconfig file to build with. Defaults to '<projectRoot>/tsconfig.app.json'.

buildTarget

string
Default: build

The build target to add.

compiler

string
Default: babel
Accepted values: babel, swc, tsc

The compiler to use to build source.

external

Array<string>

A list of external modules that will not be bundled (react, react-dom, etc.).

format

Array<string>
Default: [esm]
Accepted values: esm, cjs

The format to build the library (esm or cjs).

importPath

string

The library name used to import it, like @myorg/my-awesome-lib.

rollupConfig

string

Path relative to workspace root to a custom rollup file that takes a config object and returns an updated config.

skipFormat

Internal
boolean
Default: false

Skip formatting files.

skipPackageJson

Internal
boolean
Default: false

Do not add dependencies to package.json.

skipValidation

Internal
boolean
Default: false

Do not perform any validation on existing project.