Skip to the content.

Working with JSON from TypeScript

Loading JSON from a file

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.