// Keep keys from the catalog that are no longer in code
keySeparator:false,
// Key separator used in your translation keys
// If you want to use plain english keys, separators such as `.` and `:` will conflict. You might want to set `keySeparator: false` and `namespaceSeparator: false`. That way, `t('Status: Loading...')` will not think that there are a namespace and three separator dots for instance.
// see below for more details
lexers:{
hbs:["HandlebarsLexer"],
handlebars:["HandlebarsLexer"],
htm:["HTMLLexer"],
html:["HTMLLexer"],
mjs:["JavascriptLexer"],
js:["JsxLexer"],// if you're writing jsx inside .js files, change this to JsxLexer
ts:["JavascriptLexer"],
jsx:["JsxLexer"],
tsx:["JsxLexer"],
default:["JavascriptLexer"],
},
lineEnding:"auto",
// Control the line ending. See options at https://github.com/ryanve/eol
namespaceSeparator:":",
// Namespace separator used in your translation keys
// If you want to use plain english keys, separators such as `.` and `:` will conflict. You might want to set `keySeparator: false` and `namespaceSeparator: false`. That way, `t('Status: Loading...')` will not think that there are a namespace and three separator dots for instance.