A Cloudflare Worker which works in conjunction with https://github.com/indexxing/bsky-alt-text
at main 725 B view raw
1{ 2 "compilerOptions": { 3 /* Base Options: */ 4 "esModuleInterop": true, 5 "skipLibCheck": true, 6 "target": "es2022", 7 "verbatimModuleSyntax": false, 8 "allowJs": true, 9 "resolveJsonModule": true, 10 "moduleDetection": "force", 11 /* Strictness */ 12 "noImplicitAny": false, 13 "noImplicitThis": true, 14 "strictNullChecks": false, 15 "strict": true, 16 "noUncheckedIndexedAccess": true, 17 /* If NOT transpiling with TypeScript: */ 18 "moduleResolution": "Bundler", 19 "module": "es2022", 20 "noEmit": true, 21 "lib": ["es2022"], 22 "types": [ 23 "./worker-configuration.d.ts", 24 "@types/node", 25 "@types/service-worker-mock" 26 ] 27 }, 28 "exclude": ["node_modules", "dist", "tests"], 29 "include": ["src", "worker-configuration.d.ts"] 30}