Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
117
fork

Configure Feed

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

at main 23 lines 733 B view raw
1{ 2 "extends": "@react-native/typescript-config/tsconfig.json", 3 "compilerOptions": { 4 "jsx": "react-jsx", 5 "module": "esnext", 6 "lib": ["dom", "esnext"], 7 "types": ["node", "jest"], 8 "paths": { 9 "#/*": ["./src/*"], 10 "crypto": ["./src/platform/crypto.ts"], 11 "multiformats/cid": ["./node_modules/multiformats/types/src/cid.d.ts"], 12 "multiformats/hashes/hasher": ["./node_modules/multiformats/types/src/hashes/hasher.d.ts"] 13 }, 14 "plugins": [ 15 { 16 "name": "ts-plugin-sort-import-suggestions", 17 "moveUpPatterns": ["#/", "@lingui/react/macro"], 18 "moveDownPatterns": ["react-native-reanimated/lib"], 19 } 20 ] 21 }, 22 "exclude": ["bskyweb", "bskyembed", "web-build"] 23}