Angular

Angular 8 and importing Json (error TS2732)

Si necesitas importar un archivo .json se puede utilizar esta linea:

import particlesJson from '../../assets/particles.json';

Pero genera este error:

ERROR in src/app/profile/login.component.ts(3,27): error TS2732: Cannot find module '../../assets/particles.json'. Consider using '--resolveJsonModule' to import module with '.json' extension

La solución es agregar esto:

"resolveJsonModule": true,
"esModuleInterop": true,

en compilerOptions dentro del archivo tsconfig.json

Fuente:
https://stackoverflow.com/a/57574607/2400373

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *