The node `require` can also read in .json files. In the following code the require is flagged with an error when the ´test.json´ file exists, but the code executes correctly. ```javascript //@ts-check let test = require("./test.json") ``` 