formatting

This commit is contained in:
Seth 2025-05-19 01:16:28 -04:00
parent 260c74491a
commit 4a1e2a4097
19 changed files with 5190 additions and 1332 deletions

View file

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