Initial version of bot

This commit is contained in:
2025-04-24 02:02:39 -04:00
parent 5cec4c8122
commit dc3a6e5793
11 changed files with 2461 additions and 18 deletions

42
tscofnig.json Normal file
View File

@ -0,0 +1,42 @@
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"baseUrl": "./",
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"ESNext"
],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"paths": {
"@/*": [
"./src/*", "./dist/*"
]
},
"rootDir": "src",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"types": [
"node"
]
},
"include": [
"src/**/*.ts",
"src/**/*.js",
"@types"
],
"exclude": [
"node_modules",
"<node_internals>/**"
],
"ts-node": {
"esm": true,
"swc": true
}
}