I created a project using angular cli [ version - 6.1.3 ] and was trying to import a JSON file in the component as -
import * as serverJson from '../../config/appdetails.json';
I wanted to include the following in the typings.d.ts -
declare module "*.json" {
const value: any;
export default value;
}
However, there is no typings.d.ts present in the project structure.
In such circumstance, what is the best way to import a JSON file in angular 6 ?