Exosphere is a set of small, modular, self-hostable community tools built on the AT Protocol. app.exosphere.site
at main 27 lines 949 B view raw
1{ 2 "compilerOptions": { 3 "types": ["bun-types"], 4 "strict": true, 5 "target": "ESNext", 6 "module": "ESNext", 7 "moduleResolution": "bundler", 8 "jsx": "react-jsx", 9 "jsxImportSource": "preact", 10 "esModuleInterop": true, 11 "skipLibCheck": true, 12 "allowImportingTsExtensions": true, 13 "noEmit": true, 14 "forceConsistentCasingInFileNames": true, 15 "paths": { 16 "@exosphere/core/*": ["./packages/core/src/*"], 17 "@exosphere/client": ["./packages/client/src/index.ts"], 18 "@exosphere/client/*": ["./packages/client/src/*"], 19 "@exosphere/feeds": ["./packages/feeds/src/index.ts"], 20 "@exosphere/feeds/*": ["./packages/feeds/src/*"], 21 "@exosphere/feature-requests": ["./packages/feature-requests/src/index.ts"], 22 "@exosphere/feature-requests/*": ["./packages/feature-requests/src/*"], 23 "@exosphere/mcp": ["./packages/mcp/src/index.ts"] 24 } 25 }, 26 "exclude": ["node_modules", "dist"] 27}