element-call-Github/i18next-parser.config.ts

29 lines
665 B
TypeScript
Raw Permalink Normal View History

2022-10-10 21:19:10 +08:00
export default {
keySeparator: ".",
2022-10-10 21:19:10 +08:00
namespaceSeparator: false,
contextSeparator: "|",
pluralSeparator: "_",
2022-10-10 21:19:10 +08:00
createOldCatalogs: false,
defaultNamespace: "app",
lexers: {
ts: [
{
lexer: "JavascriptLexer",
functions: ["t", "translatedError"],
namespaceFunctions: ["useTranslation", "withTranslation"],
},
],
tsx: [
{
lexer: "JsxLexer",
functions: ["t", "translatedError"],
namespaceFunctions: ["useTranslation", "withTranslation"],
},
],
2022-10-10 21:19:10 +08:00
},
locales: ["en-GB"],
output: "public/locales/$LOCALE/$NAMESPACE.json",
input: ["src/**/*.{ts,tsx}"],
sort: true,
};