Demonstration bridge between ATproto and GraphQL. Generate schema types and interface with the ATmosphere via GraphQL queries. Includes a TypeScript server with IDE.
2
fork

Configure Feed

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

at main 15 lines 333 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "es2022", 5 "outDir": "./dist", 6 "rootDir": "./src", 7 "strict": true, 8 "esModuleInterop": true, 9 "skipLibCheck": true, 10 "forceConsistentCasingInFileNames": true, 11 "types": ["node"], 12 }, 13 "include": ["src/**/*.ts"], 14 "exclude": ["node_modules"], 15}