Trying to fix watcherexclude, but it's still not working.
This commit is contained in:
@@ -25,9 +25,9 @@
|
|||||||
"lldb.dereferencePointers": false,
|
"lldb.dereferencePointers": false,
|
||||||
"npm.autoDetect": "off",
|
"npm.autoDetect": "off",
|
||||||
"files.watcherExclude": {
|
"files.watcherExclude": {
|
||||||
"UE5/Engine/**": true,
|
"[UNREALENGINE]/Engine/**": true,
|
||||||
"UE5/Samples/**": true,
|
"[UNREALENGINE]/Samples/**": true,
|
||||||
"UE5/Templates/**": true
|
"[UNREALENGINE]/Templates/**": true
|
||||||
},
|
},
|
||||||
"files.associations": {
|
"files.associations": {
|
||||||
"**/include/**": "cpp",
|
"**/include/**": "cpp",
|
||||||
|
|||||||
2
build.py
2
build.py
@@ -78,7 +78,7 @@ def expand_json(data, vars):
|
|||||||
result = result + expand_json(data[key], vars)
|
result = result + expand_json(data[key], vars)
|
||||||
return result
|
return result
|
||||||
else:
|
else:
|
||||||
return { key: expand_json(value, vars) for key, value in data.items() }
|
return { expand_json(key, vars): expand_json(value, vars) for key, value in data.items() }
|
||||||
elif isinstance(data, list):
|
elif isinstance(data, list):
|
||||||
return [ expand_json(item, vars) for item in data ]
|
return [ expand_json(item, vars) for item in data ]
|
||||||
elif isinstance(data, str):
|
elif isinstance(data, str):
|
||||||
|
|||||||
Reference in New Issue
Block a user