Angular

Error with Angular 8 and 9 – ‘allowSyntheticDefaultImports’ flag (error TS1259)

Este error se produce cuando se carga un .json al componente. error TS1259

"can only be default-imported using the 'allowSyntheticDefaultImports' flag"

Para solucionar esto simplemente en el archivo tsconfig.json se debe agregar lo siguiente:

"compilerOptions": { "allowSyntheticDefaultImports":true, }

 

Fuente:

https://github.com/visjs/vis-network/issues/67#issuecomment-598173037

 

 

Similar Posts

Leave a Reply

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