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 trunk 27 lines 648 B view raw
1{ 2 "compilerOptions": { 3 "rootDir": "lib/", 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 "allowImportingTsExtensions": true, 14 "rewriteRelativeImportExtensions": true, 15 "strict": true, 16 "noImplicitOverride": true, 17 "noUnusedLocals": true, 18 "noUnusedParameters": true, 19 "noFallthroughCasesInSwitch": true, 20 "module": "NodeNext", 21 "sourceMap": true, 22 "declaration": true, 23 "declarationMap": true, 24 "erasableSyntaxOnly": true 25 }, 26 "include": ["lib"] 27}