discord-bot/tsconfig.json
rainofdestiny 3ac39d03ce
Some checks failed
CI/CD / typecheck (push) Failing after 46s
CI/CD / docker (push) Has been skipped
CI/CD / deploy (push) Has been skipped
refactor: rewrite in TypeScript (discord.js v14)
- Proper modular structure: src/commands/ + src/lib/
- Autocomplete for /logs and /restart (live container names)
- All metrics queries run in parallel (Promise.all)
- Multi-stage Docker build (builder + production)
- TypeScript type check as CI job before docker build

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-26 05:42:51 +07:00

16 lines
570 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}