@storm-software/cloudflare-tools
Version:
A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.
31 lines (30 loc) • 818 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "init",
"title": "Init Cloudflare tools Nx Plugin for Storm Workspace",
"type": "object",
"properties": {
"unitTestRunner": {
"type": "string",
"enum": ["vitest", "jest", "none"],
"description": "Test runner to use for unit tests.",
"default": "vitest"
},
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false
},
"js": {
"type": "boolean",
"default": false,
"description": "Use JavaScript instead of TypeScript"
},
"template": {
"description": "Generate the initial worker using a template.",
"type": "string",
"enum": ["fetch-handler", "scheduled-handler", "hono", "none"]
}
},
"required": ["name"]
}