Update file inclusion pattern in biome.json

Changed the file inclusion pattern to ensure only TypeScript files in src directories are included. This helps in focusing solely on source files and avoids unintended files from being processed.
This commit is contained in:
Mathis H (Avnyr) 2024-10-15 13:47:02 +02:00
parent 16487e5985
commit c7e1a949a2
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -5,7 +5,7 @@
}, },
"files": { "files": {
"include": [ "include": [
"./apps/**/*.ts" "./apps/**/src/**/*.ts"
] ]
}, },
"vcs": { "vcs": {