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