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 dd2e8af357f32bcc7f9359f93d7a0fb9c047eaef 27 lines 691 B view raw
1{ 2 "compilerOptions": { 3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", 4 "target": "ES2023", 5 "lib": ["ES2023"], 6 "module": "ESNext", 7 "types": ["node"], 8 "skipLibCheck": true, 9 10 /* Bundler mode */ 11 "moduleResolution": "bundler", 12 "allowImportingTsExtensions": true, 13 "verbatimModuleSyntax": true, 14 "moduleDetection": "force", 15 "declaration": true, 16 "emitDeclarationOnly": true, 17 18 /* Linting */ 19 "strict": true, 20 "noUnusedLocals": true, 21 "noUnusedParameters": true, 22 "erasableSyntaxOnly": true, 23 "noFallthroughCasesInSwitch": true, 24 "noUncheckedSideEffectImports": true 25 }, 26 "include": ["vite.config.ts"] 27}