ts load json file code example
Example 1: read json file in typescript
// data.json:
{
"greeting" : "xin chao Vietnam"
}
// component:
import * as data from 'data.json';
let greeting = data.greeting;
//registering jsonModule in tsconfig.json
"compilerOptions": {
....
"resolveJsonModule": true,
....
},
Example 2: typescript read json file
"resolveJsonModule": true,
"esModuleInterop": true,
Example 3: typescript read json file
import {default as a} from "config.json";
config.targetKey
// this requires `"resolveJsonModule": true` in tsconfig.json