vscode: more type safety

This commit is contained in:
veetaha 2020-03-24 01:11:36 +02:00
parent eff1b3fe4d
commit 4cee3e9f22

View file

@ -73,10 +73,18 @@
"type": "string" "type": "string"
}, },
"args": { "args": {
"type": "array" "type": "array",
"items": {
"type": "string"
}
}, },
"env": { "env": {
"type": "object" "type": "object",
"patternProperties": {
".+": {
"type": "string"
}
}
} }
} }
} }