DEV Community

Burak Odabaş
Burak Odabaş

Posted on

Import JSON file in Typescript

Edit tsconfig.json;

"resolveJsonModule": true,
"esModuleInterop": true

And call json file;

import example from '../assets/example.json';

Top comments (0)