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"] }