A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.
41
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 2fe8a5d439297a954ff3e72db51866e0881c0f9d 25 lines 672 B view raw
1{ 2 "compilerOptions": { 3 "composite": true, 4 "target": "ES2020", 5 "module": "ESNext", 6 "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 "moduleResolution": "bundler", 8 "moduleDetection": "force", 9 "jsx": "react-jsx", 10 "strict": true, 11 "skipLibCheck": true, 12 "allowSyntheticDefaultImports": true, 13 "esModuleInterop": true, 14 "resolveJsonModule": true, 15 "noEmit": true, 16 "emitDeclarationOnly": true, 17 "declaration": true, 18 "declarationDir": "dist-lib", 19 "sourceMap": true, 20 "outDir": "./lib-dist", 21 "rootDir": "./lib", 22 "types": ["@atcute/bluesky", "@atcute/tangled"] 23 }, 24 "include": ["lib/**/*.ts", "lib/**/*.tsx"] 25}