Update config logging to specify config file path

This commit is contained in:
Nick Bolton
2025-04-15 10:34:04 +01:00
parent 2cdf1cf3b6
commit 30a464fcdc
2 changed files with 17 additions and 6 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ type JsonArray = Array<JsonValue | JsonObject | JsonArray>;
interface JsonObject {
[key: string]: JsonObject | JsonArray | JsonValue;
}
type Json = JsonArray | JsonObject;
export type Json = JsonArray | JsonObject;
/**
* Synchronously load a JSON file from the local filesystem.