// add this in your tsconfig.json file:
{
"compilerOptions": {
"resolveJsonModule": true
}
}
{
...,
"compilerOptions": {
...
"moduleResolution": "node", // add this line
"resolveJsonModule": true // add this line
},
"include": ["**/*.ts", "./**/*.json"] // add json path
}
import {default as a} from "a.json";
a.primaryMain