this repo has no description
0
fork

Configure Feed

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

at main 31 lines 672 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2017", 4 "lib": ["dom", "dom.iterable", "esnext"], 5 "allowJs": true, 6 "skipLibCheck": true, 7 "strict": true, 8 "noEmit": true, 9 "esModuleInterop": true, 10 "module": "esnext", 11 "moduleResolution": "bundler", 12 "resolveJsonModule": true, 13 "isolatedModules": true, 14 "jsx": "preserve", 15 "incremental": true, 16 "plugins": [ 17 { 18 "name": "next" 19 } 20 ], 21 "paths": { 22 "@/*": ["./src/*"] 23 }, 24 "types": [ 25 "./cloudflare-env.d.ts", 26 "node" 27 ] 28 }, 29 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 30 "exclude": ["node_modules"] 31}