project setup

This commit is contained in:
fzzinchemical
2025-03-25 21:24:57 +01:00
commit aa36bbb3f2
10 changed files with 701 additions and 0 deletions

21
deno.json Executable file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
"useUnknownInCatchVariables": true
},
"tasks": {
"dev": "deno run --watch --check src/bot.ts",
"admin": "deno -A --watch --check src/bot.ts"
},
"imports": {
"@discordeno": "npm:@discordeno@18.0.1",
"@std/assert": "jsr:@std/assert@1",
"@types/node": "npm:@types/node@^22.5.4"
}
}