So the code is simple:
calls.json
{\"SERVER\":{ \"requests\":{ \"one\":\"1\" } } }
file.ts
import jso
Another solution is to change data.json to data.ts and export like this
data.json
data.ts
export default { "key" : { ... } }
and import as you would expect:
import { default as data } from './data'