9 lines
275 B
JavaScript
9 lines
275 B
JavaScript
module.exports = {
|
|
srcPaths: ["src/**/*.{ts,tsx}", "!src/components/common/ckeditor/**"],
|
|
localesPath: "public/locales",
|
|
defaultNamespace: "common",
|
|
|
|
// Match ANY t("...") call, anywhere in TS/TSX/JSX
|
|
translationKeyMatcher: "t\\([\"']([^\"']+)[\"']\\)",
|
|
};
|