From dfdc148b32332febb5e3369310b8d1b721fb10e3 Mon Sep 17 00:00:00 2001 From: Toil <62353659+ilyhalight@users.noreply.github.com> Date: Sun, 4 May 2025 16:45:07 +0300 Subject: [PATCH] chore: updated utility configs --- .gitignore | 2 ++ biome.json | 5 +++++ l10n.config.json | 3 ++- tsconfig.json | 4 +++- 4 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 biome.json diff --git a/.gitignore b/.gitignore index 86af6ce1..68ce076a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +arch*.txt + tests/utils.test.js dist/test-ui.user.js diff --git a/biome.json b/biome.json new file mode 100644 index 00000000..99e61e6a --- /dev/null +++ b/biome.json @@ -0,0 +1,5 @@ +{ + "files": { + "ignore": ["dist/**/*.js", "tests/ui.js"] + } +} diff --git a/l10n.config.json b/l10n.config.json index ca42a647..df77ee9a 100644 --- a/l10n.config.json +++ b/l10n.config.json @@ -3,5 +3,6 @@ "service": "yandexbrowser", "rootPath": "./src/localization", "typesFile": "../types/localization.ts", - "withTypes": true + "withTypes": true, + "parseDotNotation": true } diff --git a/tsconfig.json b/tsconfig.json index e33954ab..5846d7c2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,7 @@ "module": "ESNext", "moduleDetection": "force", "allowJs": true, + "outDir": "dist", // Bundler mode "moduleResolution": "Bundler", @@ -24,5 +25,6 @@ "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false - } + }, + "include": ["src/**/*.ts"] }