feat: bot

This commit is contained in:
2025-06-09 14:56:07 +03:00
parent fa112bc95a
commit 0a9bca073f
11 changed files with 393 additions and 1 deletions

30
bot/tsconfig.json Normal file
View File

@@ -0,0 +1,30 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"baseUrl": "./",
"paths": {
"@/*": [
"./src/*"
]
},
"outDir": "dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"plugins": [
{
"transform": "typescript-transform-paths"
},
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
]
},
"include": [
"src/**/*",
"src/config.ts"
]
}