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