a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto
bluesky
typescript
npm
1{
2 "compilerOptions": {
3 "types": ["bun"],
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 "strict": true,
14 "noImplicitOverride": true,
15 "noUnusedLocals": true,
16 "noUnusedParameters": true,
17 "noFallthroughCasesInSwitch": true,
18 "module": "NodeNext",
19 "sourceMap": true,
20 "declaration": true,
21 "declarationMap": true
22 },
23 "include": ["lib"]
24}