-
Notifications
You must be signed in to change notification settings - Fork 10
/
i18next-scanner.config.js
48 lines (48 loc) · 1.2 KB
/
i18next-scanner.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module.exports = {
input: [
"src/**/*.{js,jsx}",
// Use ! to filter out files or directories
"!src/**/*.test.{js,jsx}",
"!src/i18n/**",
"!**/node_modules/**",
],
output: "./",
options: {
debug: true,
func: {
list: ["i18next.t", "i18n.t", "t"],
extensions: [".js", ".jsx"],
},
trans: {
component: "Trans",
i18nKey: "i18nKey",
defaultsKey: "defaults",
extensions: [".js", ".jsx"],
fallbackKey: function (ns, value) {
return value;
},
acorn: {
ecmaVersion: 11, // defaults to 10
sourceType: "module", // defaults to 'module'
// Check out https://github.com/acornjs/acorn/tree/master/acorn#interface for additional options
},
},
lngs: ["en", "fr"],
ns: ["locale", "resource"],
defaultLng: "en",
defaultNs: "resource",
defaultValue: "__NOT_TRANSLATED__",
resource: {
loadPath: "src/i18n/{{lng}}.json",
savePath: "src/i18n/{{lng}}.json",
jsonIndent: 2,
lineEnding: "\n",
},
nsSeparator: false, // namespace separator
keySeparator: false, // key separator
interpolation: {
prefix: "{{",
suffix: "}}",
},
},
};