@nx/rspack
Version:
32 lines (31 loc) • 811 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "Init",
"title": "Nx Rspack Init Generator",
"type": "object",
"description": "Rspack init generator.",
"properties": {
"framework": {
"type": "string",
"description": "The UI framework used by the project.",
"enum": ["none", "react", "web", "nest"],
"alias": ["uiFramework"]
},
"style": {
"type": "string",
"description": "The style solution to use.",
"enum": ["none", "css", "scss", "less", "styl"]
},
"rootProject": {
"type": "boolean",
"x-priority": "internal"
},
"keepExistingVersions": {
"type": "boolean",
"x-priority": "internal",
"description": "Keep existing dependencies versions",
"default": false
}
},
"required": []
}