chore: updated utility configs

This commit is contained in:
Toil 2025-05-04 16:45:07 +03:00
parent be3e62e454
commit dfdc148b32
No known key found for this signature in database
GPG key ID: 57248E2819D32070
4 changed files with 12 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
arch*.txt
tests/utils.test.js
dist/test-ui.user.js

5
biome.json Normal file
View file

@ -0,0 +1,5 @@
{
"files": {
"ignore": ["dist/**/*.js", "tests/ui.js"]
}
}

View file

@ -3,5 +3,6 @@
"service": "yandexbrowser",
"rootPath": "./src/localization",
"typesFile": "../types/localization.ts",
"withTypes": true
"withTypes": true,
"parseDotNotation": true
}

View file

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