Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 314 Bytes

json.md

File metadata and controls

11 lines (7 loc) · 314 Bytes

Working with JSON from TypeScript

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.