Try either
import * as config from '../config.json';
or if you want to do as you wrote, then add this under compilerOptions in your tsconfig.json
tsconfig.json
"resolveJsonModule": true, "esModuleInterop": true,