Skip to content

Commit

Permalink
add schema.json for cli config
Browse files Browse the repository at this point in the history
  • Loading branch information
sek-consulting committed Jul 24, 2024
1 parent 651a5c4 commit 401cd3b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions apps/docs/public/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"tsx": {
"type": "boolean"
},
"tailwind": {
"type": "object",
"properties": {
"css": {
"type": "string"
},
"config": {
"type": "string"
}
},
"required": ["css", "config"]
},
"aliases": {
"type": "object",
"properties": {
"components": {
"type": "string"
},
"utils": {
"type": "string"
}
},
"required": ["components", "utils"]
}
},
"required": ["tsx", "tailwind", "aliases"]
}

0 comments on commit 401cd3b

Please sign in to comment.