Demonstration bridge between ATproto and GraphQL. Generate schema types and interface with the ATmosphere via GraphQL queries. Includes a TypeScript server with IDE.
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}