an independent Bluesky client using Constellation, PDS Queries, and other services reddwarf.app
frontend spa bluesky reddwarf microcosm client app
99
fork

Configure Feed

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

at fe8f474c328c61f64bc6e2e22fa1e970707a159e 29 lines 669 B view raw
1{ 2 "include": ["**/*.ts", "**/*.tsx"], 3 "compilerOptions": { 4 "target": "ES2022", 5 "jsx": "react-jsx", 6 "module": "ESNext", 7 "lib": ["ES2022", "DOM", "DOM.Iterable"], 8 "types": ["vite/client"], 9 10 /* Bundler mode */ 11 "moduleResolution": "bundler", 12 "allowImportingTsExtensions": true, 13 "verbatimModuleSyntax": true, 14 "noEmit": true, 15 16 /* Linting */ 17 "skipLibCheck": true, 18 "strict": true, 19 "noUnusedLocals": true, 20 "noUnusedParameters": true, 21 "noFallthroughCasesInSwitch": true, 22 "noUncheckedSideEffectImports": true, 23 "baseUrl": ".", 24 "paths": { 25 "~/*": ["./src/*"], 26 "@/*": ["./src/*"] 27 } 28 } 29}