The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update tsconfig.json

Luna ef54936f 28b8bbbd

+19 -6
+19 -6
tsconfig.json
··· 1 1 { 2 2 "compilerOptions": { 3 - "target": "es5", 4 - "lib": ["dom", "dom.iterable", "esnext"], 3 + "target": "es6", 4 + "lib": [ 5 + "dom", 6 + "dom.iterable", 7 + "esnext" 8 + ], 5 9 "allowJs": true, 6 10 "skipLibCheck": true, 7 11 "strict": true, ··· 20 24 } 21 25 ], 22 26 "paths": { 23 - "@/*": ["./*"] 27 + "@/*": [ 28 + "./*" 29 + ] 24 30 } 25 31 }, 26 - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 - "exclude": ["node_modules"] 28 - } 32 + "include": [ 33 + "next-env.d.ts", 34 + "**/*.ts", 35 + "**/*.tsx", 36 + ".next/types/**/*.ts" 37 + ], 38 + "exclude": [ 39 + "node_modules" 40 + ] 41 + }