Make convert remaining js config files to ts

Co-authored-by: hughns
Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo K
2025-08-04 18:50:57 +02:00
parent 518039f7c3
commit e133289a7f
4 changed files with 44 additions and 10 deletions

View File

@@ -1,4 +1,12 @@
export default {
/*
Copyright 2024 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
*/
import type { UserConfig } from "i18next-parser";
const config: UserConfig = {
keySeparator: ".",
namespaceSeparator: false,
contextSeparator: "|",
@@ -26,3 +34,5 @@ export default {
input: ["src/**/*.{ts,tsx}"],
sort: true,
};
export default config;