offline-first, p2p synced, atproto enabled, feed reader
0
fork

Configure Feed

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

ignores

+6 -1
+4
.gitignore
··· 9 9 .env* 10 10 !.env.example 11 11 12 + .wireit 13 + .jestcache 14 + .tsbuildinfo 15 + 12 16 *.db 13 17 *.db-shm 14 18 *.db-wal
+1 -1
package.json
··· 146 146 "tsconfig.json" 147 147 ], 148 148 "output": [ 149 - "tsconfig.tsbuildinfo" 149 + ".tsbuildinfo" 150 150 ] 151 151 }, 152 152 "docs": {
+1
tsconfig.json
··· 37 37 38 38 // we're not really building, but typechecking can still use increment 39 39 "incremental": true, 40 + "tsBuildInfoFile": "./.tsbuildinfo", 40 41 41 42 // Node.js types 42 43 "types": ["node"],