Colum Ferry ee91b63b42
feat(rsbuild): add inferred targets plugin (#29192)
## Current Behavior
There is currently no way to execute Rsbuild targets via Nx.

## Expected Behavior
Add a `@nx/rsbuild/plugin` to infer targets based on the
`rsbuild.config` files in the workspace.
Also add an `init` generator to allow for `nx init` in existing rsbuild
projects.
2024-12-10 12:36:15 -05:00

8 lines
185 B
TypeScript

export interface InitGeneratorSchema {
keepExistingVersions?: boolean;
updatePackageScripts?: boolean;
addPlugin?: boolean;
skipFormat?: boolean;
skipPackageJson?: boolean;
}