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