Skip to content

Commit c2f7d65

Browse files
committed
fix: add ts-ignore for languages
1 parent 9035dd0 commit c2f7d65

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/core/src/locale/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@ import ru from "./ru";
66
import zh_tw from "./zh_tw";
77
import { Context } from "..";
88

9-
// @ts-ignore
109
const localeObj: Record<string, typeof zh> = {
10+
// @ts-ignore
1111
en,
1212
zh,
13+
// @ts-ignore
1314
es,
15+
// @ts-ignore
1416
"zh-TW": zh_tw,
17+
// @ts-ignore
1518
hi,
19+
// @ts-ignore
1620
ru,
1721
};
1822

0 commit comments

Comments
 (0)