a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto
bluesky
typescript
npm
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 "useDefineForClassFields": false,
17 "noFallthroughCasesInSwitch": true,
18 "module": "NodeNext",
19 "sourceMap": true,
20 "declaration": true,
21 "declarationMap": true
22 },
23 "include": ["lib"]
24}