revert: "fix: TS error in locales list"

wait issue: https://github.com/unjs/jiti/issues/106

This reverts commit c8baff3186.
pull/648/head^2
三咲智子 2022-12-30 02:30:28 +08:00
rodzic 0420e3b288
commit 8b06c48514
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 69992F2250DFD93E
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -2,7 +2,8 @@ import type { NuxtI18nOptions } from '@nuxtjs/i18n'
import type { DateTimeFormats } from '@intlify/core-base'
import type { LocaleObject } from '#i18n'
const locales = ([
// @ts-expect-error dir is there, ts complaining
const locales: LocaleObject[] = [
{
code: 'en-US',
file: 'en-US.json',
@ -49,7 +50,7 @@ const locales = ([
name: 'العربية',
dir: 'rtl',
},
] satisfies LocaleObject[]).sort((a, b) => a.code.localeCompare(b.code))
].sort((a, b) => a.code.localeCompare(b.code))
const datetimeFormats = Object.keys(locales).reduce((acc, key) => {
acc[key] = {