Hi,
When using highcharts-vue in TypeScript project I receive error in highcharts-vue.d.ts
error TS1192: Module '.../node_modules/highcharts/highcharts' has no default export.
It can be fixed by replacing with import * as Highcharts from 'highcharts' and it seems right according to Highcharts Typescript page.
Error can also be fixed by allowSyntheticDefaultImports but we don't want to use this option in our project.
Hi, When using highcharts-vue in TypeScript project I receive error in highcharts-vue.d.ts
error TS1192: Module '.../node_modules/highcharts/highcharts' has no default export.
It can be fixed by replacing with
import * as Highcharts from 'highcharts'
and it seems right according to Highcharts Typescript page.Error can also be fixed by allowSyntheticDefaultImports but we don't want to use this option in our project.
highcharts version: 7.1.1 highcharts-vue version: 1.3.4