
Angular – import .json
Table of Contents
Intro
How to add .json file in to your Typesctipt for Angular
Sources
Snippet
// tsconfig.json
"compilerOptions": {
...
"resolveJsonModule": true
}
// your.ts
import * as data from './example.json';