A personal media tracker built on the AT Protocol opnshelf.xyz
0
fork

Configure Feed

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

fix: fix mobile tsc

+2 -27
+1
.gitignore
··· 41 41 42 42 # Misc 43 43 .turbo 44 + telemetry-id
+1 -1
apps/mobile/tsconfig.json
··· 2 2 "extends": "expo/tsconfig.base", 3 3 "compilerOptions": { 4 4 "strict": true, 5 - "lib": ["es2022", "dom"], 5 + "lib": ["es2022", "dom", "dom.iterable"], 6 6 "paths": { 7 7 "@/*": [ 8 8 "./*"
-24
packages/types/package.json
··· 1 - { 2 - "name": "@opnshelf/types", 3 - "version": "1.0.0", 4 - "description": "Shared TypeScript types for OpnShelf", 5 - "main": "src/index.ts", 6 - "types": "src/index.ts", 7 - "exports": { 8 - ".": { 9 - "import": "./src/index.ts", 10 - "require": "./src/index.ts", 11 - "default": "./src/index.ts" 12 - } 13 - }, 14 - "scripts": { 15 - "test": "echo \"Error: no test specified\" && exit 1" 16 - }, 17 - "keywords": [], 18 - "author": "", 19 - "license": "ISC", 20 - "packageManager": "pnpm@10.28.2", 21 - "devDependencies": { 22 - "typescript": "^5.9.3" 23 - } 24 - }
-2
packages/types/src/index.ts
··· 1 - // Shared types for OpnShelf 2 - export {};