a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
105
fork

Configure Feed

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

at major 23 lines 505 B view raw
1{ 2 "compilerOptions": { 3 "types": [], 4 "outDir": "dist/", 5 "esModuleInterop": true, 6 "skipLibCheck": true, 7 "target": "ESNext", 8 "allowJs": true, 9 "resolveJsonModule": true, 10 "moduleDetection": "force", 11 "isolatedModules": true, 12 "verbatimModuleSyntax": true, 13 "strict": true, 14 "noImplicitOverride": true, 15 "noUnusedLocals": true, 16 "noUnusedParameters": true, 17 "noFallthroughCasesInSwitch": true, 18 "module": "NodeNext", 19 "sourceMap": true, 20 "declaration": true 21 }, 22 "include": ["lib"] 23}