This repository has no description
0

Configure Feed

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

stigmergic / tsconfig.json
548 B 20 lines
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "ES2022", 5 "moduleResolution": "bundler", 6 "lib": ["ES2022", "DOM"], 7 "types": ["@cloudflare/workers-types"], 8 "strict": true, 9 "esModuleInterop": true, 10 "skipLibCheck": true, 11 "forceConsistentCasingInFileNames": true, 12 "resolveJsonModule": true, 13 "isolatedModules": true, 14 "noEmit": true, 15 "jsx": "react-jsx", 16 "jsxImportSource": "hono/jsx" 17 }, 18 "include": ["src/**/*.ts", "lexicons/generated/**/*.ts"], 19 "exclude": ["node_modules", "public"] 20}