Initialize apps/bot and other cleanup

This commit is contained in:
Dominic Ferrando
2026-08-15 16:25:36 -04:00
parent 88107ae5ac
commit 1b886e4744
15 changed files with 281 additions and 11 deletions
+8 -4
View File
@@ -1,19 +1,24 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ES2015", "ESNext", "DOM"],
"lib": [
"ES2015",
"ESNext",
"DOM"
],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"types": [
"bun"
],
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
@@ -21,7 +26,6 @@
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"forceConsistentCasingInFileNames": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,