Trying to fix watcherexclude, but it's still not working.

This commit is contained in:
2025-07-02 17:18:31 -04:00
parent 689b80044c
commit 13f8d2669c
2 changed files with 4 additions and 4 deletions

View File

@@ -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",

View File

@@ -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):