How to add .json file in to your Typesctipt for Angular
// tsconfig.json "compilerOptions": { ... "resolveJsonModule": true }
// your.ts import * as data from './example.json';
You must be logged in to post a comment.