Skip to content

Commit

Permalink
fix: running with Node.js 22
Browse files Browse the repository at this point in the history
  • Loading branch information
mohd-akram committed May 19, 2024
1 parent e27e885 commit e44f7a8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/locale/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import type { LocaleTranslations } from './config.js'

import deLocale from './de/translation.json' assert { type: 'json' }
import enLocale from './en/translation.json' assert { type: 'json' }
import esLocale from './es/translation.json' assert { type: 'json' }
import itLocale from './it/translation.json' assert { type: 'json' }
import jaLocale from './ja/translation.json' assert { type: 'json' }
import plLocale from './pl/translation.json' assert { type: 'json' }
import ptBrLocale from './pt-BR/translation.json' assert { type: 'json' }
import uaLocale from './ua/translation.json' assert { type: 'json' }
import zhCNLocale from './zh-CN/translation.json' assert { type: 'json' }
import deLocale from './de/translation.json' with { type: 'json' }
import enLocale from './en/translation.json' with { type: 'json' }
import esLocale from './es/translation.json' with { type: 'json' }
import itLocale from './it/translation.json' with { type: 'json' }
import jaLocale from './ja/translation.json' with { type: 'json' }
import plLocale from './pl/translation.json' with { type: 'json' }
import ptBrLocale from './pt-BR/translation.json' with { type: 'json' }
import uaLocale from './ua/translation.json' with { type: 'json' }
import zhCNLocale from './zh-CN/translation.json' with { type: 'json' }

export * from './config.js'
export * from './default-config.js'
Expand Down

0 comments on commit e44f7a8

Please sign in to comment.