refactor(discord-bot): improve project structure

This commit is contained in:
Pihkaal
2025-12-03 17:36:02 +01:00
parent 252ca07c0e
commit 1c2dcbab34
16 changed files with 514 additions and 516 deletions

View File

@@ -1,27 +1,28 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"noEmit": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"~": ["./src/index"]
},
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
}
}
"noPropertyAccessFromIndexSignature": false
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}