angular read config from json

JavaScript
{  "compilerOptions": {  "resolveJsonModule": true, "esModuleInterop": true } }

add this to tsconfig.json, then read json by importing like normal module:
import '../assets/test.json'

Source

Also in JavaScript: