a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
at trunk 516 B view raw
1{ 2 "compilerOptions": { 3 "outDir": "dist/", 4 "esModuleInterop": true, 5 "skipLibCheck": true, 6 "target": "ESNext", 7 "allowJs": true, 8 "resolveJsonModule": true, 9 "moduleDetection": "force", 10 "isolatedModules": true, 11 "verbatimModuleSyntax": true, 12 "strict": true, 13 "noImplicitOverride": true, 14 "noUnusedLocals": true, 15 "noUnusedParameters": true, 16 "noFallthroughCasesInSwitch": true, 17 "module": "NodeNext", 18 "sourceMap": true, 19 "declaration": true, 20 "declarationMap": true 21 }, 22 "include": ["lib"] 23}