* Reads and parses a file from the Tree as a UTF-8 encoded JSON file. * Supports parsing JSON (RFC 8259) with the following extensions: * * Single-line and multi-line JavaScript comments * * Trailing commas within objects and arrays * * @param path The path of the file to read. * @
(path: string)
| 107 | * @throws An error if the file contains malformed JSON. |
| 108 | */ |
| 109 | readJson(path: string): JsonValue; |
| 110 | |
| 111 | exists(path: string): boolean; |
| 112 | get(path: string): FileEntry | null; |
no outgoing calls
no test coverage detected