add basic redeem handling, nerf silver bullets to 30 minutes

This commit is contained in:
2025-09-24 21:31:36 +02:00
parent 2960ea5242
commit 392c67fb0d
9 changed files with 155 additions and 19 deletions

View File

@@ -3,18 +3,41 @@
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"lib/*": ["./lib/*"],
"main": ["./index.ts"],
"user": ["./user.ts"],
"commands": ["./commands/index.ts"],
"items": ["./items/index.ts"],
"cheers": ["./cheers/index.ts"],
"events": ["./events/index.ts"],
"web/*": ["./web/*"]
"lib/*": [
"./lib/*"
],
"main": [
"./index.ts"
],
"user": [
"./user.ts"
],
"commands": [
"./commands/index.ts"
],
"items": [
"./items/index.ts"
],
"cheers": [
"./cheers/index.ts"
],
"events": [
"./events/index.ts"
],
"web/*": [
"./web/*"
],
"pointRedeems": [
"./pointRedeems/index.ts"
]
}
},
"references": [
{ "path": "./tsconfig.bot.json" },
{ "path": "./tsconfig.web.json" }
{
"path": "./tsconfig.bot.json"
},
{
"path": "./tsconfig.web.json"
}
]
}