feat(bots/discord): add source

This commit is contained in:
PalmDevs
2024-03-28 21:52:23 +07:00
parent b3b7723b4f
commit f9d50a0a6b
30 changed files with 1482 additions and 0 deletions

25
bots/discord/tsconfig.json Executable file
View File

@@ -0,0 +1,25 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"module": "ESNext",
"target": "ESNext",
"lib": ["ESNext"],
"composite": false,
"exactOptionalPropertyTypes": false,
"esModuleInterop": true,
"paths": {
"$/*": ["./src/*"],
"$constants": ["./src/constants"],
"$utils/*": ["./src/utils/*"],
"$classes": ["./src/classes/index.ts"],
"$classes/*": ["./src/classes/*"],
"$commands": ["./src/commands/index.ts"],
"$commands/*": ["./src/commands/*"]
},
"skipLibCheck": true
},
"exclude": ["node_modules", "dist"],
"include": ["./*.json", "src/**/*.ts", "scripts/**/*.ts"]
}