The weeb for the next gen discord boat - Wamellow
wamellow.com
bot
discord
1{
2 "compilerOptions": {
3 /* Basic Options */
4 "incremental": true,
5 "module": "ESNext",
6 "target": "ES2024",
7 "lib": [
8 "dom",
9 "dom.iterable",
10 "esnext"
11 ],
12 /* Strict Type-Checking Options */
13 "strict": true,
14 "noImplicitAny": true,
15 "strictNullChecks": true,
16 "strictFunctionTypes": true,
17 "strictBindCallApply": true,
18 "strictPropertyInitialization": true,
19 "noImplicitThis": true,
20 "alwaysStrict": true,
21 /* Additional Checks */
22 "noUnusedLocals": true,
23 "noUnusedParameters": true,
24 "noImplicitReturns": false,
25 "noFallthroughCasesInSwitch": true,
26 /* Module Resolution Options */
27 "moduleResolution": "node",
28 "esModuleInterop": true,
29 "baseUrl": ".",
30 "declaration": true,
31 "skipLibCheck": true,
32 "resolveJsonModule": true,
33 "noUncheckedIndexedAccess": false,
34 /* Experimental Options */
35 "experimentalDecorators": false,
36 /* Advanced Options */
37 "forceConsistentCasingInFileNames": true,
38 /* Other Options */
39 "allowJs": true,
40 "noEmit": true,
41 "isolatedModules": true,
42 "jsx": "react-jsx",
43 "plugins": [
44 {
45 "name": "next"
46 }
47 ],
48 "paths": {
49 "@/*": [
50 "./*"
51 ]
52 }
53 },
54 "include": [
55 "next-env.d.ts",
56 "**/*.ts",
57 "**/*.tsx",
58 ".next/types/**/*.ts",
59 ".next/dev/types/**/*.ts"
60 ],
61 "exclude": [
62 "node_modules"
63 ]
64}