Skip to content

Commit 92feebc

Browse files
committed
fix: 更新规则
1 parent 99ac18e commit 92feebc

1 file changed

Lines changed: 20 additions & 2 deletions

File tree

assets/config_schema.json

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,31 @@
169169
"include": {
170170
"type": "array",
171171
"items": {
172-
"type": "string"
172+
"anyOf": [
173+
{
174+
"type": "string"
175+
},
176+
{
177+
"type": "object",
178+
"properties": {},
179+
"additionalProperties": true
180+
}
181+
]
173182
}
174183
},
175184
"exclude": {
176185
"type": "array",
177186
"items": {
178-
"type": "string"
187+
"anyOf": [
188+
{
189+
"type": "string"
190+
},
191+
{
192+
"type": "object",
193+
"properties": {},
194+
"additionalProperties": true
195+
}
196+
]
179197
}
180198
},
181199
"esbuild": {

0 commit comments

Comments
 (0)