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 28 lines 663 B view raw
1{ 2 "compilerOptions": { 3 "types": [], 4 "rootDir": "lib/", 5 "outDir": "dist/", 6 "esModuleInterop": true, 7 "skipLibCheck": true, 8 "target": "ESNext", 9 "allowJs": true, 10 "resolveJsonModule": true, 11 "moduleDetection": "force", 12 "isolatedModules": true, 13 "verbatimModuleSyntax": true, 14 "allowImportingTsExtensions": true, 15 "rewriteRelativeImportExtensions": true, 16 "strict": true, 17 "noImplicitOverride": true, 18 "noUnusedLocals": true, 19 "noUnusedParameters": true, 20 "noFallthroughCasesInSwitch": true, 21 "module": "NodeNext", 22 "sourceMap": true, 23 "declaration": true, 24 "declarationMap": true, 25 "erasableSyntaxOnly": true 26 }, 27 "include": ["lib"] 28}