35 lines
943 B
JSON
35 lines
943 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"lib": ["deno.window", "esnext"],
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitReturns": true
|
|
},
|
|
"imports": {
|
|
"discord.js": "npm:discord.js@^14.14.1",
|
|
"@discordjs/rest": "npm:@discordjs/rest@^2.2.0",
|
|
"@toml-tools/parser": "npm:@toml-tools/parser@^1.0.0"
|
|
},
|
|
"tasks": {
|
|
"start": "deno run --allow-net --allow-read --allow-write --allow-env --allow-ffi --unstable-ffi --env src/index.ts",
|
|
"dev": "deno run --watch --allow-net --allow-read --allow-write --allow-env --allow-ffi --unstable-ffi --env src/index.ts",
|
|
"check": "deno check src/index.ts",
|
|
"lint": "deno lint",
|
|
"fmt": "deno fmt"
|
|
},
|
|
"fmt": {
|
|
"useTabs": false,
|
|
"lineWidth": 100,
|
|
"indentWidth": 2,
|
|
"singleQuote": true,
|
|
"proseWrap": "preserve"
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"tags": ["recommended"]
|
|
}
|
|
}
|
|
}
|