@routineless/nx-aws-cdk
Version:
Nx plugin for AWS CDK
41 lines (40 loc) • 1.06 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "Preset",
"title": "",
"type": "object",
"properties": {
"unitTestRunner": {
"description": "Adds the specified unit test runner",
"type": "string",
"enum": ["jest", "none"],
"default": "jest",
"alias": "u"
},
"linter": {
"description": "The tool to use for running lint checks.",
"type": "string",
"enum": ["eslint"],
"default": "eslint"
},
"infraAppName": {
"description": "Cdk infrastructure management application name.",
"type": "string",
"default": "infra",
"x-prompt": "Enter cdk application name",
"alias": "i"
},
"lambdaAppName": {
"description": "Initial aws lambda app name",
"type": "string",
"x-prompt": "Enter initial aws lambda name (you can skip it and lambda will note be generated)",
"alias": "l"
},
"skipFormat": {
"description": "Skip formatting files",
"type": "boolean",
"default": false
}
},
"required": []
}