move to biomejs, add workflow move auth to header check readme
All checks were successful
Code quality checks / biome (push) Successful in 13s

This commit is contained in:
creations 2025-04-15 17:33:24 -04:00
parent 73ab535df6
commit 9cb178aea4
Signed by: creations
GPG key ID: 8F553AA4320FC711
18 changed files with 368 additions and 340 deletions

View file

@ -2,31 +2,15 @@
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
],
"@config/*": [
"config/*"
],
"@types/*": [
"types/*"
],
"@helpers/*": [
"src/helpers/*"
],
"@database/*": [
"src/database/*"
],
"@/*": ["src/*"],
"@config/*": ["config/*"],
"@types/*": ["types/*"],
"@helpers/*": ["src/helpers/*"],
"@database/*": ["src/database/*"]
},
"typeRoots": [
"./src/types",
"./node_modules/@types"
],
"typeRoots": ["./src/types", "./node_modules/@types"],
// Enable latest features
"lib": [
"ESNext",
"DOM"
],
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
@ -44,11 +28,7 @@
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"noPropertyAccessFromIndexSignature": false
},
"include": [
"src",
"types",
"config"
],
"include": ["src", "types", "config"]
}