Hello
I have a JSON file LevelData.json
in my file system that I want to pull into my manager class - how would I go about that? I tried importing the data using import * as levelData from ./LevelData.json
but get an error: Cannot find module './LevelData.json. Consider using '--resolveJsonModule' to import module with '.json' extension.
From what I can tell, that needs to be added to a tsconfig.json
file which I canβt find.
Iβm guessing Iβm going about it the wrong way? Still a bit of a TypeScript noob, bear with me any help would be very much appreciated!