24 lines
615 B
JSON
Executable File
24 lines
615 B
JSON
Executable File
{
|
|
"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",
|
|
|
|
"@root/" : "./src/"
|
|
}
|
|
}
|