hi,
I want to add Turkish language to my Vue project, but the date picker also gives the following error
the codes I use
import { loadCldr, setCulture} from '@syncfusion/ej2-base';
import * as numberingSystems from 'cldr-data/supplemental/numberingSystems.json';
import * as gregorian from 'cldr-data/main/tr/ca-gregorian.json';
import * as numbers from 'cldr-data/main/tr/numbers.json';
import * as timeZoneNames from 'cldr-data/main/tr/timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
setCulture('tr');
When I click the date picker, the console gives this error

where am i doing wrong?