24 lines
610 B
JSON
24 lines
610 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"$id": "NxAngularKarmaGenerator",
|
|
"title": "Add Karma Configuration to the workspace.",
|
|
"description": "Add Karma configuration to an Nx workspace.",
|
|
"cli": "nx",
|
|
"type": "object",
|
|
"examples": [
|
|
{
|
|
"command": "nx g @nrwl/angular:karma",
|
|
"description": "Add a base karma configuration to the workspace."
|
|
}
|
|
],
|
|
"properties": {
|
|
"skipPackageJson": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Do not add dependencies to `package.json`."
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": []
|
|
}
|