Files
aurorabot/tsconfig.json
syntaxbullet 25a0bd3431
Some checks failed
Deploy to Production / test (push) Failing after 29s
Sign panel sessions and isolate test runs
- Replace in-memory auth sessions with signed cookies and signed OAuth state
- Add auth route coverage and update panel/web server wiring
- Switch test script to per-file Bun processes and clean up type checks
2026-04-09 21:44:05 +02:00

60 lines
1.2 KiB
JSON

{
"compilerOptions": {
// Environment setup & latest features
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Aliases
"baseUrl": ".",
"paths": {
"@/*": [
"./bot/*"
],
"@commands/*": [
"./bot/commands/*"
],
"@db/*": [
"./shared/db/*"
],
"@lib/*": [
"./bot/lib/*"
],
"@modules/*": [
"./bot/modules/*"
],
"@shared/*": [
"./shared/*"
]
}
},
"exclude": [
"node_modules",
"api",
"dist",
"drizzle"
]
}