require a json file results in an error: Cannot find module
I had a similar problem when trying to import json from a file in a typescript project. I used import * as data from “module/path/filename.json” instead of const data = require(“module/path/filename.json”) and it worked.