linting
All checks were successful
Code quality checks / biome (push) Successful in 12s

This commit is contained in:
Seth 2025-05-19 01:16:38 -04:00
parent 4a1e2a4097
commit 1d83a59acb
17 changed files with 1135 additions and 4305 deletions

View file

@ -1,10 +1,7 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": [
"ESNext",
"DOM"
],
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
@ -25,8 +22,6 @@
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"typeRoots": [
"./types"
]
"typeRoots": ["./types"]
}
}
}