Loading JSON from a file can be done statically like
import * as data from './data.json';
It is required to configure resolveJsonModule
in tsconfig
for this to work.
Loading JSON from a file can be done statically like
import * as data from './data.json';
It is required to configure resolveJsonModule
in tsconfig
for this to work.