28 lines
715 B
JSON
Executable File
28 lines
715 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:discord.js@14.18.0",
|
|
"@melvdouc/xml-parser": "jsr:@melvdouc/xml-parser@^0.1.1",
|
|
"@std/assert": "jsr:@std/assert@1",
|
|
"@types/node": "npm:@types/node@^22.14.1",
|
|
|
|
"@root/" : "./src/"
|
|
},
|
|
"fmt": {
|
|
"useTabs": true
|
|
}
|
|
}
|