This repository has no description
0

Configure Feed

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

rookery / tsconfig.json
427 B 17 lines
1{ 2 "compilerOptions": { 3 "target": "es2022", 4 "module": "esnext", 5 "moduleResolution": "bundler", 6 "outDir": "dist", 7 "rootDir": "src", 8 "strict": true, 9 "skipLibCheck": true, 10 "declaration": true, 11 "esModuleInterop": true, 12 "forceConsistentCasingInFileNames": true, 13 "types": ["@cloudflare/workers-types/2023-07-01"] 14 }, 15 "include": ["src"], 16 "exclude": ["node_modules", "dist", "test"] 17}