在扩展名A中,我有一个像这样的VSCode模式文件
{
"$id": "foo.bar",
"definitions": {
"example": {...}
}
}
在扩展名B中,我想引用foo。像这样的Bar文件
{
"type": "object",
"properties": {
"filters": {
"$ref": "foo.bar#/definitions/example"
}
}
}
不通过http引用文件,这是可能的吗?
作为URI引用本地文件的规范方法是file:///absolute/path/name
。我不知道VSCode是否会支持。