-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfhirware.code-workspace
51 lines (51 loc) · 1.25 KB
/
fhirware.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"folders": [
{
"path": "."
}
],
"settings": {
"json.schemas": [
{
"url": "./fw-schemas/r401/resource.json",
"fileMatch": [
"/fw-ig/*-r401/input/resources/*.json",
"/fw-ig/*-r401/input/examples/*.json",
"/fw-ig/*-r401/input/*.json",
"/fw-examples/**/*-r401.json"
]
},
{
"url": "./fw-schemas/r401/example.json",
"fileMatch": [
"/fw-examples/**/*-r401e.json"
]
}
],
"yaml.schemas": {
"./fw-schemas/r401/resource.json": [
"/fw-ig/*-r401/input/resources/*.yaml",
"/fw-ig/*-r401/input/examples/*.yaml",
"/fw-examples/**/*-r401.yaml"
]
},
"json.maxItemsComputed": 50000,
"editor.tabSize": 2,
"xml.fileAssociations": [
{
"pattern": "fw-ig/*-r401/input/resources/*.xml",
"systemId": "fw-schemas/r401/fhir-single.xsd"
},
{
"pattern": "fw-ig/*-r401/input/examples/*.xml",
"systemId": "fw-schemas/r401/fhir-single.xsd"
},
{
"pattern": "fw-ig/*-r401/input/*.xml",
"systemId": "fw-schemas/r401/fhir-single.xsd"
}
],
"xml.server.vmargs": "-Xmx512m",
"editor.detectIndentation": false
}
}