Skip to content

Commit 2a84d21

Browse files
committed
fix: tweak config schema
1 parent 9b568f5 commit 2a84d21

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/schemas/Config.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,12 @@ const ConfigEntry = {
6868
const Config = {
6969
type: 'object',
7070
properties: {
71-
base: {
72-
...ConfigEntry,
73-
required: [
74-
'base',
75-
],
76-
},
71+
base: ConfigEntry,
7772
},
7873
additionalProperties: ConfigEntry,
74+
required: [
75+
'base',
76+
],
7977
};
8078

8179
export default Config;

0 commit comments

Comments
 (0)