@rushstack/heft
Version:
Build all your JavaScript projects the same way: A way that works.
29 lines (27 loc) • 377 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Schema that matches anything",
"oneOf": [
{
"type": "array"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "null"
},
{
"type": "number"
},
{
"type": "object"
},
{
"type": "string"
}
]
}