BlueSky & more on desktop lazurite.stormlightlabs.org/
tauri rust typescript bluesky appview atproto solid
2
fork

Configure Feed

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

at main 25 lines 726 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2023", 4 "useDefineForClassFields": true, 5 "module": "ESNext", 6 "lib": ["ES2023", "DOM", "DOM.Iterable"], 7 "skipLibCheck": true, 8 "moduleResolution": "bundler", 9 "allowImportingTsExtensions": true, 10 "resolveJsonModule": true, 11 "isolatedModules": true, 12 "verbatimModuleSyntax": true, 13 "noEmit": true, 14 "jsx": "preserve", 15 "jsxImportSource": "solid-js", 16 "strict": true, 17 "noUnusedLocals": true, 18 "noUnusedParameters": true, 19 "noFallthroughCasesInSwitch": true, 20 "types": ["vite/client", "@testing-library/jest-dom"], 21 "paths": { "$/*": ["./src/*"] } 22 }, 23 "include": ["src"], 24 "references": [{ "path": "./tsconfig.node.json" }] 25}